Flutter Firebase Notifications Installation
-
Setup the firebase console settings
-
Then Setup the firebase settings in flutter
android/build.gradle fileclasspath 'com.google.gms:google-services:4.3.3'
-
Then Setup the firebase settings in flutter
android/app/build.gradle file- defaultConfig add this code
multiDexEnabled true apply plugin: 'com.google.gms.google-services'implementation 'com.google.firebase:firebase-analytics:17.5.0'implementation 'com.google.firebase:firebase-messaging:20.2.4'
- defaultConfig add this code
-
Install package
firebase_messagingfor flutter -
Add the in AndroidManifest.xml
<intent-filter> <action android:name="FLUTTER_NOTIFICATION_CLICK" /> <category android:name="android.intent.category.DEFAULT" /> </intent-filter> ``` -
Add the ##FLUTTER_NOTIFICATION_CLICK and ##click_actions in firebase Additional options (optional)