Skip to content

Commit 0eeedd6

Browse files
authored
fix: Add missing android:exported to service (wix#790)
It's required since Android 12 and makes apps targeting Android 12 or higher fail to build.
1 parent 7d606f2 commit 0eeedd6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/android/app/src/main/AndroidManifest.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
<service android:name=".core.ProxyService"/>
1212

1313
<service
14-
android:name=".fcm.FcmInstanceIdListenerService">
14+
android:name=".fcm.FcmInstanceIdListenerService"
15+
android:exported="true">
1516
<intent-filter>
1617
<action android:name="com.google.firebase.MESSAGING_EVENT" />
1718
<action android:name="com.google.firebase.INSTANCE_ID_EVENT" />

0 commit comments

Comments
 (0)