<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.ai.ipu.push.test"
android:versionCode="1"
android:versionName="1.0" android:installLocation="preferExternal">
<uses-sdk
android:minSdkVersion="15"
android:targetSdkVersion="22" />
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
<uses-permission android:name="android.permission.WAKE_LOCK"/>
<application
android:name="com.ai.ipu.push.test.PushTestApplication"
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:launchMode="singleTask"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="com.ai.ipu.push.test.permission.PermissionActivity"
android:screenOrientation="portrait"></activity>
<service android:name="com.ai.ipu.push.test.service.DefinePushService" android:process=":PushService" />
<service android:name="com.ai.ipu.push.test.service.DefinePushClusterService" android:process=":PushClusterService"/>
<service android:name="com.ai.ipu.push.test.service.DefinePushAsyncService" android:process=":PushAsyncService"/>
<service android:name="com.ai.ipu.push.test.service.DefinePushClusterAsyncService" android:process=":PushClusterAsyncService"/>
</application>
</manifest>
|