Android Question Notifications on / off

Alex_197

Well-Known Member
Licensed User
Longtime User
Hi all.

I have an app that uses notification (Firebase push).

If I install this app on Android 10, 11, 12 and then go Settings->Notifications->App - my application is on this list and the notification is turned on.
If I install this app on Android 14 and then go Settings->Notifications->App - my application is not on this list.

But if I send Firebase push notification to Android 14 and then go Settings->Notifications->App - my application is on this list, but notification is turned off. So, I need to manually turn it on.

This is a problem - users will never receive notification. Is there any way to fix it?

Thanks.
 

asales

Expert
Licensed User
Longtime User
You need to get permission to show notification in Android 14:
If you don't has the permission, the app will the receive the firebase message but don't show the notification.
 
Upvote 0

Alex_197

Well-Known Member
Licensed User
Longtime User
You need to get permission to show notification in Android 14:
If you don't has the permission, the app will the receive the firebase message but don't show the notification.
Thank you, It works.
 
Upvote 0
Top