Skip to content

Commit

Permalink
Reactivate MyJobService for handling in-app notifications
Browse files Browse the repository at this point in the history
  • Loading branch information
nutellarlz committed Sep 10, 2017
1 parent c796221 commit 4949cb9
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -187,14 +187,20 @@
<action android:name="com.google.firebase.MESSAGING_EVENT"/>
</intent-filter>
</service>
<service
android:name="message.MyFirebaseInstanceIDService">
<intent-filter>
<action android:name="com.google.firebase.INSTANCE_ID_EVENT"/>
</intent-filter>
</service>
<!-- There is a problem with messages displaying while app is running -->
<!--<service
<service
android:exported="false"
android:name="message.MyJobService">
<intent-filter>
<action android:name="com.firebase.jobdispatcher.ACTION_EXECUTE"/>
</intent-filter>
</service>-->
</service>
</application>

</manifest>

0 comments on commit 4949cb9

Please sign in to comment.