summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorRoman Birg <roman@cyngn.com>2015-04-20 18:12:53 -0700
committerRoman Birg <roman@cyngn.com>2015-04-24 12:30:55 -0700
commite77bc46f9d05b9c2f0eb2b37be2227e993fd6efa (patch)
tree7a96e8704d5942e98e3cddbdff76753e19ae19e4 /AndroidManifest.xml
parentafbe6e30000f63d61e6b88be40c8a0c0cce60b21 (diff)
downloadandroid_packages_apps_Profiles-e77bc46f9d05b9c2f0eb2b37be2227e993fd6efa.tar.gz
android_packages_apps_Profiles-e77bc46f9d05b9c2f0eb2b37be2227e993fd6efa.tar.bz2
android_packages_apps_Profiles-e77bc46f9d05b9c2f0eb2b37be2227e993fd6efa.zip
ProfilesTrustAgent: initial implementation
Change-Id: I6aba123f81fd872e8ac6be532d8ec3995522daf2 Signed-off-by: Roman Birg <roman@cyngn.com>
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml47
1 files changed, 47 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
new file mode 100644
index 0000000..deb4fc1
--- /dev/null
+++ b/AndroidManifest.xml
@@ -0,0 +1,47 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ Copyright (C) 2015 The CyanogenMod Project
+
+ Licensed under the Apache License, Version 2.0 (the "License"
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="org.cyanogenmod.profiles">
+
+ <uses-permission android:name="android.permission.CONTROL_KEYGUARD"/>
+ <uses-permission android:name="android.permission.PROVIDE_TRUST_AGENT"/>
+ <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
+ <uses-permission android:name="android.permission.ACCESS_KEYGUARD_SECURE_STORAGE"/>
+
+ <application android:allowBackup="false"
+ android:label="@string/app_label"
+ android:requiredForAllUsers="true">
+
+ <service android:exported="true"
+ android:label="@string/app_label"
+ android:name=".ProfilesTrustAgent"
+ android:permission="android.permission.BIND_TRUST_AGENT">
+ <intent-filter>
+ <action android:name="android.service.trust.TrustAgentService"/>
+ <category android:name="android.intent.category.DEFAULT"/>
+ </intent-filter>
+ <meta-data android:name="android.service.trust.trustagent"
+ android:resource="@xml/profiles_trust_agent"/>
+ </service>
+
+ <receiver android:name=".StartUpReceiver">
+ <intent-filter>
+ <action android:name="android.intent.action.BOOT_COMPLETED"/>
+ </intent-filter>
+ </receiver>
+ </application>
+</manifest>