Browse Source

Merge pull request #2650 from nextcloud/explicitAllowGCM

Explicitly allow gcm on gplay
Andy Scherzinger 6 years ago
parent
commit
8c5f564253
1 changed files with 11 additions and 0 deletions
  1. 11 0
      src/gplay/AndroidManifest.xml

+ 11 - 0
src/gplay/AndroidManifest.xml

@@ -77,6 +77,17 @@
             </intent-filter>
         </service>
 
+        <service
+            android:name="com.evernote.android.job.gcm.PlatformGcmService"
+            android:enabled="true"
+            android:exported="true"
+            android:permission="com.google.android.gms.permission.BIND_NETWORK_TASK_SERVICE"
+            tools:replace="android:enabled">
+            <intent-filter>
+                <action android:name="com.google.android.gms.gcm.ACTION_TASK_READY"/>
+            </intent-filter>
+        </service>
+
     </application>
 
 </manifest>