forked from wordpress-mobile/WordPress-Android
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroidManifestBetagroup.xml
More file actions
38 lines (31 loc) · 1.5 KB
/
AndroidManifestBetagroup.xml
File metadata and controls
38 lines (31 loc) · 1.5 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
37
38
<?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.beta.permission.C2D_MESSAGE"
android:protectionLevel="signature"/>
<uses-permission android:name="org.wordpress.android.beta.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.StatsContentProviderBeta"
android:exported="false"/>
<service android:name="org.wordpress.android.GCMIntentService"/>
<!-- We've used a custom receiver here. The one that is bundled in GCM API wasn't able to start the service. -->
<receiver
android:name="org.wordpress.android.GCMReceiver"
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>