forked from community/device-mgt-plugins
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
183 lines
8.1 KiB
183 lines
8.1 KiB
10 years ago
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
package="org.wso2.cdm.agent"
|
||
|
android:sharedUserId="org.wso2.emm.agent"
|
||
|
android:sharedUserLabel="@string/hello_world"
|
||
|
android:versionCode="1"
|
||
|
android:versionName="1.0" >
|
||
|
|
||
|
<uses-sdk
|
||
|
android:minSdkVersion="16"
|
||
|
android:targetSdkVersion="17" />
|
||
|
|
||
|
<!-- GCM connects to Google Services. -->
|
||
|
|
||
|
<uses-permission android:name="android.permission.INTERNET" />
|
||
|
|
||
|
<!-- GCM requires a Google account. -->
|
||
|
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
|
||
|
|
||
|
<!-- Keeps the processor from sleeping when a message is received. -->
|
||
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
||
|
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
|
||
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
||
|
<!--
|
||
|
Creates a custom permission so only this app can receive its messages.
|
||
|
|
||
|
NOTE: the permission *must* be called PACKAGE.permission.C2D_MESSAGE,
|
||
|
where PACKAGE is the application's package name.
|
||
|
-->
|
||
|
<permission
|
||
|
android:name="org.wso2.emm.agent.permission.C2D_MESSAGE"
|
||
|
android:protectionLevel="signature" />
|
||
|
|
||
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
||
|
<uses-permission android:name="org.wso2.emm.agent.permission.C2D_MESSAGE" />
|
||
|
<uses-permission android:name="android.permission.READ_PHONE_STATE" >
|
||
|
</uses-permission>
|
||
|
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
|
||
|
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" >
|
||
|
</uses-permission>
|
||
|
<uses-permission android:name="android.permission.ACCESS_GPS" />
|
||
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
||
|
<uses-permission android:name="android.permisssion.ACCESS_COARSE_LOCATION" >
|
||
|
</uses-permission>
|
||
|
<uses-permission android:name="android.permission.SEND_SMS" >
|
||
|
</uses-permission>
|
||
|
<uses-permission android:name="android.permission.RECEIVE_SMS" >
|
||
|
</uses-permission>
|
||
|
<uses-permission android:name="android.permission.READ_SMS" />
|
||
|
<uses-permission android:name="android.permission.WRITE_SMS" />
|
||
|
<uses-permission android:name="android.permission.READ_CONTACTS" />
|
||
|
<uses-permission android:name="android.permission.READ_LOGS" />
|
||
|
<uses-permission android:name="android.permission.READ_CALL_LOG" />
|
||
|
<uses-permission android:name="android.permission.WRITE_CALL_LOG" />
|
||
|
<uses-permission android:name="android.permission.INTERNET" />
|
||
|
<uses-permission android:name="android.permission.GET_ACCOUNTS" >
|
||
|
</uses-permission>
|
||
|
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
|
||
|
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" >
|
||
|
</uses-permission>
|
||
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" >
|
||
|
</uses-permission>
|
||
|
|
||
|
<application
|
||
|
android:allowBackup="true"
|
||
|
android:icon="@drawable/ic_launcher"
|
||
|
android:label="@string/app_name"
|
||
|
android:screenOrientation="portrait"
|
||
|
android:theme="@style/TopBarTheme" >
|
||
|
<activity
|
||
|
android:name="org.wso2.cdm.agent.RegistrationActivity"
|
||
|
android:screenOrientation="portrait"
|
||
|
android:theme="@style/TopBarTheme" >
|
||
|
</activity>
|
||
|
<activity
|
||
|
android:name="org.wso2.cdm.agent.DisplayDeviceInfoActivity"
|
||
|
android:label="@string/title_activity_display_device_info"
|
||
|
android:screenOrientation="portrait" >
|
||
|
</activity>
|
||
|
<activity
|
||
|
android:name="org.wso2.cdm.agent.RegisterSuccessfulActivity"
|
||
|
android:label="@string/title_activity_register_successful"
|
||
|
android:screenOrientation="portrait"
|
||
|
android:theme="@style/Theme.Sherlock" >
|
||
|
</activity>
|
||
|
|
||
|
<!-- Begin List of Receivers -->
|
||
|
<receiver
|
||
|
android:name="com.google.android.gcm.GCMBroadcastReceiver"
|
||
|
android:permission="com.google.android.c2dm.permission.SEND" >
|
||
|
<intent-filter>
|
||
|
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
|
||
|
<action android:name="com.google.android.c2dm.intent.REGISTRATION" />
|
||
|
|
||
|
<category android:name="org.wso2.emm.agent" />
|
||
|
</intent-filter>
|
||
|
</receiver>
|
||
|
<receiver
|
||
|
android:name="org.wso2.cdm.agent.services.WSO2DeviceAdminReceiver"
|
||
|
android:permission="android.permission.BIND_DEVICE_ADMIN" >
|
||
|
<intent-filter>
|
||
|
|
||
|
<!-- This action is required -->
|
||
|
<action android:name="android.app.action.DEVICE_ADMIN_ENABLED" />
|
||
|
</intent-filter>
|
||
|
|
||
|
<!-- This is required this receiver to become device admin component. -->
|
||
|
<meta-data
|
||
|
android:name="android.app.device_admin"
|
||
|
android:resource="@xml/wso2_device_admin" >
|
||
|
</meta-data>
|
||
|
</receiver>
|
||
|
<receiver android:name="org.wso2.cdm.agent.services.SMSReceiver">
|
||
|
<intent-filter>
|
||
|
<action android:name="android.provider.Telephony.SMS_RECEIVED" />
|
||
|
</intent-filter>
|
||
|
</receiver>
|
||
|
<receiver android:name="org.wso2.cdm.agent.services.AlarmReceiver"></receiver>
|
||
|
<receiver android:name="org.wso2.cdm.agent.services.DeviceStartupIntentReceiver" android:enabled="true" android:exported="false">
|
||
|
<intent-filter>
|
||
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
||
|
<action android:name="android.intent.action.QUICKBOOT_POWERON" />
|
||
|
<category android:name="android.intent.category.DEFAULT" />
|
||
|
</intent-filter>
|
||
|
</receiver>
|
||
|
<!-- End List of Receivers -->
|
||
|
<service android:name="org.wso2.cdm.agent.GCMIntentService" />
|
||
|
|
||
|
<activity
|
||
|
android:name="org.wso2.cdm.agent.AlreadyRegisteredActivity"
|
||
|
android:screenOrientation="portrait"
|
||
|
android:theme="@style/Theme.Sherlock" >
|
||
|
</activity>
|
||
|
<activity
|
||
|
android:name="org.wso2.cdm.agent.AuthenticationActivity"
|
||
|
android:screenOrientation="portrait"
|
||
|
android:theme="@style/Theme.Sherlock"
|
||
|
android:windowSoftInputMode="stateUnchanged|adjustPan" >
|
||
|
</activity>
|
||
|
<activity
|
||
|
android:name="org.wso2.cdm.agent.AuthenticationErrorActivity"
|
||
|
android:screenOrientation="portrait" >
|
||
|
</activity>
|
||
|
<activity
|
||
|
android:name="org.wso2.cdm.agent.NotifyActivity"
|
||
|
android:label="@string/title_activity_notify"
|
||
|
android:screenOrientation="portrait" >
|
||
|
</activity>
|
||
|
<activity
|
||
|
android:name="org.wso2.cdm.agent.ServerDetails"
|
||
|
android:screenOrientation="portrait"
|
||
|
android:label="@string/app_name"
|
||
|
android:windowSoftInputMode="stateUnchanged|adjustPan" >
|
||
|
<intent-filter>
|
||
|
<action android:name="android.intent.action.MAIN" />
|
||
|
|
||
|
<category android:name="android.intent.category.LAUNCHER" />
|
||
|
</intent-filter>
|
||
|
</activity>
|
||
|
<activity
|
||
|
android:name="org.wso2.cdm.agent.PinCodeActivity"
|
||
|
android:screenOrientation="portrait"
|
||
|
android:windowSoftInputMode="stateUnchanged|adjustPan" >
|
||
|
</activity>
|
||
|
<activity
|
||
|
android:name="org.wso2.cdm.agent.Notification"
|
||
|
android:label="@string/title_activity_notification"
|
||
|
android:screenOrientation="portrait" >
|
||
|
</activity>
|
||
|
<activity
|
||
|
android:name="org.wso2.cdm.agent.AlertActivity"
|
||
|
android:label="@string/title_activity_alert"
|
||
|
android:screenOrientation="portrait"
|
||
|
android:theme="@android:style/Theme.Dialog" >
|
||
|
</activity>
|
||
|
<activity
|
||
|
android:name="org.wso2.cdm.agent.LogActivity"
|
||
|
android:label="@string/title_activity_log"
|
||
|
android:screenOrientation="portrait" >
|
||
|
</activity>
|
||
|
</application>
|
||
|
|
||
|
</manifest>
|