mirror of https://github.com/tuskyapp/Tusky.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
727 B
18 lines
727 B
<manifest xmlns:android="http://schemas.android.com/apk/res/android" |
|
package="com.keylesspalace.tusky"> |
|
<application> |
|
<meta-data android:name="firebase_analytics_collection_enabled" android:value="false" /> |
|
|
|
<service android:name=".MyFirebaseInstanceIdService" android:exported="true"> |
|
<intent-filter> |
|
<action android:name="com.google.firebase.INSTANCE_ID_EVENT" /> |
|
</intent-filter> |
|
</service> |
|
|
|
<service android:name=".MessagingService" android:exported="true"> |
|
<intent-filter> |
|
<action android:name="com.google.firebase.MESSAGING_EVENT" /> |
|
</intent-filter> |
|
</service> |
|
</application> |
|
</manifest>
|
|
|