add push notif firebase

This commit is contained in:
shaulascr
2025-05-14 21:40:19 +07:00
parent ce8a6b24b4
commit afd2819192
13 changed files with 234 additions and 121 deletions

View File

@ -61,6 +61,7 @@
android:enabled="true"
android:exported="false"
android:foregroundServiceType="dataSync" />
<activity
android:name=".ui.profile.mystore.profile.shipping_service.ShippingServiceActivity"
android:exported="false"/>
@ -148,6 +149,25 @@
<activity
android:name=".ui.MainActivity"
android:exported="false" />
<service
android:name=".ui.notif.fcm.FCMService"
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/outline_notifications_24" />
<meta-data
android:name="com.google.firebase.messaging.default_notification_color"
android:resource="@color/blue_500" />
<meta-data
android:name="com.google.firebase.messaging.default_notification_channel_id"
android:value="fcm_default_channel" />
</application>
</manifest>