Questions tagged [android-push-notification]

252 questions
1
vote
1 answer

How to get the delivery status of notification from fcm in springboot?

Below is my code in spring boot. private void sendNotification(FCMMessageRequestDTO fcmMessageRequestDTO) { MultiValueMap headers = new LinkedMultiValueMap<>(); headers.set("Authorization", fcmAuthorizationKey); …
1
vote
1 answer

Open browser from FCM Push Notification

I'm trying to open up a browser page to a specific url after the user opens an FCM Push Notification they've received. This is the code I currently have: import android.content.Intent; import android.net.Uri; import…
Korallion
  • 13
  • 3
1
vote
0 answers

How to change com.google.firebase.iid.FirebaseInstanceIdReceiver permission

I use MobSF for the statistical analysis of my android app. It report this problem to me: Can anyone tell me how the report can be resolved?
1
vote
1 answer

How to display a calling screen on the arrival of push notification in a communication app (Flutter android)

I am working on a flutter application that is similar to WhatsApp. But I have encountered a problem of which I am unable to find a solution. I have linked Firebase Background Messaging Handler to my application in order to launch a screen in…
1
vote
0 answers

How to make the android notification picture larger instead of a small badge like Youtube App?

I'm trying to implement the android notification picture like the youtube app, where the shrink big picture is larger than a normal icon, but still able to expand to a big picture style with a swipe. I'm assuming this is a android built in…
1
vote
1 answer

Open specific fragment destination in Navigation graph when click on push notification & graph is in other than launcher activity

I want to open a specific fragment in navigation component graph when user click on a push notification. But I've more than one navigation graphs. The destination fragment I want to navigate is not in the graph of launcher activity. val…
1
vote
2 answers

Flutter own push notifications (store agnostic)

I was wondering, given that Flutter is multi platform and each store requires its own procedure for the final step of setting up Push notifications, would it be worthwhile to implement a full "flutter proprietary push notification system" something…
1
vote
1 answer

Android push dismises after few seconds

I'm trying to create the incoming call push notification. When a call event occurs the foreground service with notification starts. I create a channel for it and notification. Here is the code: The channel settings: private fun…
DanMan
  • 692
  • 9
  • 22
1
vote
0 answers

Android custom notification sound for FCM in Flutter not working

I have a custom notification sound for FCM in my Flutter App working properly when I set the targetSdkVersion to 25 but once I change the targetSdkVersion to 28 default sound is played instead of custom sound. I'm using plugin firebase_messaging…
1
vote
0 answers

Android custom notification sound for FCM in Flutter not working when changing to targetSdkVersion 28

I have a custom notification sound for FCM in my Flutter App working properly when I set the targetSdkVersion to 25 but once I change the targetSdkVersion to 28 default sound is played instead. I'm using plugin firebase_messaging 6.0.9 This is my…
1
vote
0 answers

How to send foreground and background push notification to android using django push notification package

Iam using django-push-notification package in django project , In android it the json response should be in the format : { "data": { "title" : "You have a notification", "body" : "The body of the notification", "id" : 1234, "backgroundImage" :…
1
vote
1 answer

Not able to Switch Layout to RTL when arabic text is sent over Push Notification in Android

So i'm trying to send Arabic Text over push notification, i have an image and a textview in a remoteview, when i send the text in english it works perfectly, but if i send it as arabic, then i'm able to receive the text but i'm not able to show it…
1
vote
1 answer

handle fcm display messages and data messages by using laravel rest api in android java

how to handle it in android fcm please share any suitable solution i want to resolve issue of fcm on background and on foreground $payload = [ 'to' => $user->device_token, 'collapse_key' =>'test message', 'data' => [ 'title' => '', …
1
vote
0 answers

How to generate in app notification in android app?

I want to generate in app notification for my app like if boss update something bell icon will change, but nothing show on notification bar of Android app and when the user click bell icon it again take to new activity which shows what is the…
user12659332
1
vote
0 answers

Onesignal push notification icon is not showing

I have added a logo image on one signal push notification settings page for web push. It is not showing a logo image on a push notification in the browser. It is showing the default bell icon. We have the same issue on android SDK push notification…