Don't require apps to use RECEIVE permission for GCM/FCM

This commit is contained in:
Fs00 2020-08-05 22:25:30 +02:00 committed by Marvin W
parent df5ad9f3de
commit e1bb395ff8
1 changed files with 2 additions and 4 deletions

View File

@ -214,8 +214,7 @@
<!-- Cloud Messaging -->
<service
android:name="org.microg.gms.gcm.PushRegisterService"
android:permission="com.google.android.c2dm.permission.RECEIVE">
android:name="org.microg.gms.gcm.PushRegisterService">
<intent-filter>
<action android:name="com.google.android.c2dm.intent.REGISTER" />
<action android:name="com.google.android.c2dm.intent.UNREGISTER" />
@ -233,8 +232,7 @@
<service android:name="org.microg.gms.gcm.McsService" />
<receiver
android:name="org.microg.gms.gcm.SendReceiver"
android:permission="com.google.android.c2dm.permission.RECEIVE">
android:name="org.microg.gms.gcm.SendReceiver">
<intent-filter>
<action android:name="com.google.android.gcm.intent.SEND" />
</intent-filter>