forked from wordpress-mobile/WordPress-Android
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroidManifestReleaseAndDebug.xml
More file actions
36 lines (30 loc) · 1.38 KB
/
AndroidManifestReleaseAndDebug.xml
File metadata and controls
36 lines (30 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="org.wordpress.android"
android:installLocation="auto">
<!-- GCM configuration -->
<permission
android:name="org.wordpress.android.permission.C2D_MESSAGE"
android:protectionLevel="signature"/>
<uses-permission android:name="org.wordpress.android.permission.C2D_MESSAGE"/>
<application
tools:replace="allowBackup, icon"
android:allowBackup="false"
android:icon="@drawable/app_icon">
<provider
android:name=".providers.StatsContentProvider"
android:authorities="org.wordpress.android.providers.StatsContentProvider"
android:exported="false"/>
<service android:name="org.wordpress.android.GCMIntentService"/>
<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.wordpress.android"/>
</intent-filter>
</receiver>
</application>
</manifest>