aboutsummaryrefslogtreecommitdiffstats
path: root/src/playstore/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'src/playstore/AndroidManifest.xml')
-rw-r--r--src/playstore/AndroidManifest.xml32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/playstore/AndroidManifest.xml b/src/playstore/AndroidManifest.xml
new file mode 100644
index 000000000..a54f8bee1
--- /dev/null
+++ b/src/playstore/AndroidManifest.xml
@@ -0,0 +1,32 @@
+<?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="de.pixart.messenger">
+
+ <application tools:ignore="GoogleAppIndexingWarning">
+
+ <meta-data
+ android:name="firebase_analytics_collection_deactivated"
+ android:value="true" />
+ <meta-data
+ android:name="google_analytics_adid_collection_enabled"
+ android:value="false" />
+
+ <receiver
+ android:name=".services.MaintenanceReceiver"
+ android:exported="true"
+ android:permission="android.permission.CHANGE_CONFIGURATION">
+ <intent-filter>
+ <action android:name="de.pixart.messenger.RENEW_INSTANCE_ID" />
+ </intent-filter>
+ </receiver>
+
+ <service
+ android:name=".services.PushMessageReceiver"
+ android:exported="false">
+ <intent-filter>
+ <action android:name="com.google.firebase.MESSAGING_EVENT" />
+ </intent-filter>
+ </service>
+ </application>
+</manifest>