You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to get my onBackgroundMessage to execute when the app is on Background and a notification has been receive, but it doesn't execute myBackgroundMessageHandler.
I did everything that was written in the documentation at Optionally handle background messages, but it still doesn't work like i want,
When i receive a notification when the app is on Background, What i get is a notification without data (no app icon and no images, only title and body text).It's like onMessage was execute.
package com.yimerah.ijn_amen;
import androidx.annotation.NonNull;
import io.flutter.embedding.android.FlutterActivity;
import io.flutter.embedding.engine.FlutterEngine;
import io.flutter.plugins.GeneratedPluginRegistrant;
public class MainActivity extends FlutterActivity {
@Override
public void configureFlutterEngine(@NonNull FlutterEngine flutterEngine) {
GeneratedPluginRegistrant.registerWith(flutterEngine);
}
}
Application.java
package com.yimerah.ijn_amen;
import io.flutter.app.FlutterApplication;
import io.flutter.plugin.common.PluginRegistry;
import io.flutter.plugin.common.PluginRegistry.PluginRegistrantCallback;
import io.flutter.plugins.GeneratedPluginRegistrant;
import io.flutter.plugins.firebasemessaging.FlutterFirebaseMessagingService;
import io.flutter.plugins.firebasemessaging.FirebaseMessagingPlugin;
public class Application extends FlutterApplication implements PluginRegistrantCallback {
@Override
public void onCreate() {
super.onCreate();
FlutterFirebaseMessagingService.setPluginRegistrant(this);
}
@Override
public void registerWith(PluginRegistry registry) {
FirebaseMessagingPlugin.registerWith(registry.registrarFor("io.flutter.plugins.firebasemessaging.FirebaseMessagingPlugin"));
}
}
OnBackgroundMessage
onBackgroundMessage: myBackgroundMessageHandler
myBackgroundMessageHandler{
final FirebaseUser firebaseUser = await auth.currentUser();
print("on message:$message\n");
final String userReceivingId =
message['data']['userReceivingNotificationId'];
final String body = message['notification']['body'];
final String notificationType = message['data']['notificationType'];
final String notificationId = message['data']['activityFeedItemId'];
if (userReceivingId == firebaseUser.uid) {
int id = Uuid().parse(notificationId).reduce((a, b) => a + b);
final String notificationMedia =
message['data']['userActivatingNotificationPhotoUrl'];
await showNotificationMediaStyle("", body, notificationMedia, id: id);
print("Notification shown!");
}
print("Notification not shown!");
}
Thank you in advance for your help,
The text was updated successfully, but these errors were encountered:
Hi everyone,
I'm trying to get my onBackgroundMessage to execute when the app is on Background and a notification has been receive, but it doesn't execute myBackgroundMessageHandler.
I did everything that was written in the documentation at Optionally handle background messages, but it still doesn't work like i want,
When i receive a notification when the app is on Background, What i get is a notification without data (no app icon and no images, only title and body text).It's like onMessage was execute.
Here my code :
AndroidManifest.xml
index.js
buildgradle
MainActivity.java
Application.java
OnBackgroundMessage
Thank you in advance for your help,
The text was updated successfully, but these errors were encountered: