Add push notifications

This commit is contained in:
Matte23
2020-10-29 22:53:36 +01:00
parent 8f824b81b3
commit 76b4886c6e
12 changed files with 144 additions and 19 deletions

View File

@@ -37,7 +37,21 @@
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
<receiver android:name=".AlarmBroadcastReceiver" />
<service
android:name=".push.CircolappFirebaseMessagingService"
android:exported="false">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT" />
</intent-filter>
</service>
<meta-data
android:name="com.google.firebase.messaging.default_notification_icon"
android:resource="@drawable/ic_notification" />
</application>
</manifest>