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
…#173)

(cherry picked from commit cde6d4b)
  • Loading branch information
erisu authored and lempere committed Oct 28, 2022
1 parent ef26064 commit dae5fdf
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 dae5fdf

Please sign in to comment.