mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-02-07 20:46:17 +01:00
don't include FCM service in shared Manifest
Since not everybody has it now, and you crash if you try to load what you don't have.
This commit is contained in:
parent
0373f02c3e
commit
8dd1db31c7
3 changed files with 25 additions and 6 deletions
|
@ -197,12 +197,6 @@
|
|||
</intent-filter>
|
||||
</receiver>
|
||||
|
||||
<service android:name="FBMService">
|
||||
<intent-filter>
|
||||
<action android:name="com.google.firebase.MESSAGING_EVENT" />
|
||||
</intent-filter>
|
||||
</service>
|
||||
|
||||
<service android:name="NFCCardService" android:exported="true"
|
||||
android:permission="android.permission.BIND_NFC_SERVICE">
|
||||
<intent-filter>
|
||||
|
|
19
xwords4/android/app/src/xw4NoSMS/AndroidManifest.xml
Normal file
19
xwords4/android/app/src/xw4NoSMS/AndroidManifest.xml
Normal file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="org.eehouse.android.xw4"
|
||||
>
|
||||
|
||||
<application android:icon="@drawable/icon48x48"
|
||||
android:label="@string/app_name"
|
||||
android:name=".XWApp"
|
||||
android:theme="@style/AppTheme"
|
||||
>
|
||||
|
||||
<service android:name="FBMService">
|
||||
<intent-filter>
|
||||
<action android:name="com.google.firebase.MESSAGING_EVENT" />
|
||||
</intent-filter>
|
||||
</service>
|
||||
|
||||
</application>
|
||||
</manifest>
|
|
@ -22,5 +22,11 @@
|
|||
|
||||
<service android:name="WiDirService" />
|
||||
|
||||
<service android:name="FBMService">
|
||||
<intent-filter>
|
||||
<action android:name="com.google.firebase.MESSAGING_EVENT" />
|
||||
</intent-filter>
|
||||
</service>
|
||||
|
||||
</application>
|
||||
</manifest>
|
||||
|
|
Loading…
Add table
Reference in a new issue