aboutsummaryrefslogtreecommitdiffstats
path: root/src/playstore/AndroidManifest.xml
diff options
context:
space:
mode:
authorChristian Schneppe <christian@pix-art.de>2017-03-17 23:42:42 +0100
committerChristian Schneppe <christian@pix-art.de>2017-03-17 23:42:42 +0100
commitb9f1a63fce7161c09f1d438768dfc0abe56dfd75 (patch)
tree65c882d28c946a7fa784e320e73a549347a41c02 /src/playstore/AndroidManifest.xml
parent5397701f53c9f31ba64a7a9c3fdad4f02a67e5c6 (diff)
rename playstore to standardpush
Diffstat (limited to 'src/playstore/AndroidManifest.xml')
-rw-r--r--src/playstore/AndroidManifest.xml38
1 files changed, 0 insertions, 38 deletions
diff --git a/src/playstore/AndroidManifest.xml b/src/playstore/AndroidManifest.xml
deleted file mode 100644
index dcce3cda3..000000000
--- a/src/playstore/AndroidManifest.xml
+++ /dev/null
@@ -1,38 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<manifest package="de.pixart.messenger"
- xmlns:android="http://schemas.android.com/apk/res/android">
-
- <permission
- android:name="de.pixart.messenger.permission.C2D_MESSAGE"
- android:protectionLevel="signature" />
- <uses-permission android:name="de.pixart.messenger.permission.C2D_MESSAGE" />
-
- <application>
-
- <receiver
- android:name="com.google.android.gms.gcm.GcmReceiver"
- android:exported="true"
- android:permission="com.google.android.c2dm.permission.SEND">
- <intent-filter>
- <action android:name="com.google.android.c2dm.intent.RECEIVE" />
- <category android:name="com.example.gcm" />
- </intent-filter>
- </receiver>
-
- <service
- android:name=".services.PushMessageReceiver"
- android:exported="false">
- <intent-filter>
- <action android:name="com.google.android.c2dm.intent.RECEIVE" />
- </intent-filter>
- </service>
-
- <service
- android:name=".services.InstanceIdService"
- android:exported="false">
- <intent-filter>
- <action android:name="com.google.android.gms.iid.InstanceID" />
- </intent-filter>
- </service>
- </application>
-</manifest>