mirror of
https://github.com/YTVanced/VancedMicroG
synced 2024-11-30 23:23:01 +00:00
Don't require apps to use RECEIVE permission for GCM/FCM
This commit is contained in:
parent
df5ad9f3de
commit
e1bb395ff8
1 changed files with 2 additions and 4 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue