60 lines
2.7 KiB
XML
60 lines
2.7 KiB
XML
<?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"/>
|
|
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
|
<uses-permission android:name="android.permission.BLUETOOTH" />
|
|
<uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL" />
|
|
|
|
<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>
|
|
|
|
<activity android:name=".ProfilePickerActivity"
|
|
android:theme="@*android:style/Theme.Material.Dialog.Alert"
|
|
android:excludeFromRecents="true">
|
|
<intent-filter>
|
|
<action android:name="cyanogenmod.platform.intent.action.PROFILE_PICKER" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
</application>
|
|
</manifest>
|