Skip to content

Commit

Permalink
fix(android): add service exported flags w/ intent-filter (havesource…
Browse files Browse the repository at this point in the history
  • Loading branch information
erisu authored and dertieran committed Sep 22, 2022
1 parent f0b1e6b commit d9977dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@
<receiver android:name="com.adobe.phonegap.push.BackgroundActionButtonHandler"/>
<receiver android:name="com.adobe.phonegap.push.PushDismissedHandler"/>

<service android:name="com.adobe.phonegap.push.FCMService">
<service android:name="com.adobe.phonegap.push.FCMService" android:exported="true">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT"/>
</intent-filter>
</service>

<service android:name="com.adobe.phonegap.push.PushInstanceIDListenerService">
<service android:name="com.adobe.phonegap.push.PushInstanceIDListenerService" android:exported="true" >
<intent-filter>
<action android:name="com.google.firebase.INSTANCE_ID_EVENT"/>
</intent-filter>
Expand Down

0 comments on commit d9977dc

Please sign in to comment.