Fix Notification

This commit is contained in:
phanhuuloi27
2022-06-15 21:22:29 +07:00
parent f26cacbfa5
commit 77c393a191
29 changed files with 614 additions and 249 deletions
+15 -5
View File
@@ -20,11 +20,6 @@
android:name=".OrderDetail"
android:exported="false" />
<service
android:name=".Service.ListenOrder"
android:enabled="true"
android:exported="true" />
<uses-library
android:name="org.apache.http.legacy"
android:required="false" />
@@ -70,6 +65,21 @@
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service android:name=".Service.MyFirebaseIdService">
<intent-filter>
<action android:name="com.google.firebase.INSTANCE_ID_EVENT" />
</intent-filter>
</service>
<service
android:name=".Service.MyFirebaseMessaging"
android:exported="false">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT" />
</intent-filter>
</service>
</application>
</manifest>