skip to Main Content

FCM Notification receiving for Flutter

I'm still trying to figure out how receiving FCM works for Flutter application. According to this article I need to register a listener for a foreground notifications and background notifications. So in main.dart I have following functions: void main() async…

VIEW QUESTION

Android Studio: Firebase Push Notifications not working when app is minimized or closed

After updating compileSdkVersion from 30->31 in gradle file, android phones have stopped receiving notifications when the app is minimized or closed. Gradle File: implementation 'com.google.firebase:firebase-analytics:17.2.2' implementation 'com.google.firebase:firebase-auth:19.2.0' implementation 'com.google.firebase:firebase-firestore:21.4.0' implementation 'com.google.firebase:firebase-messaging:20.1.0' implementation 'com.google.firebase:firebase-analytics:17.2.2' implementation 'com.google.android.gms:play-services-location:18.0.0' Manifest File: <service android:name=".service.ABCMessaging" android:exported="true">…

VIEW QUESTION
Back To Top
Search