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 -6
View File
@@ -27,11 +27,6 @@
android:name=".VerifyPhone"
android:exported="false" />
<service
android:name=".Service.ListenOrder"
android:enabled="true"
android:exported="true" />
<activity
android:name=".OrderStatus"
android:exported="false" />
@@ -53,7 +48,6 @@
android:name=".SignUp"
android:exported="false"
android:theme="@style/Theme.Foodify.NoActionBar" />
/>
<activity
android:name=".SignIn"
android:exported="false"
@@ -69,6 +63,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>