4,950 questions
1
vote
1
answer
60
views
PWA cannot enable app notifications in an Android TWA (Trusted Web Activity)?
Notification.requestPermission() in the PWA is not triggering the Android app / TWA to change Notificaitions to "granted" instead of "blocked".
Using the most recent version of ...
0
votes
1
answer
65
views
Custom icon in Android notification not working
I encountered an issue sending notifications in my Android app. I am setting my custom icon via .setSmallIcon(R.drawable.ic_bublic_2) but android ignores it and shows a default launcher icon instead. ...
0
votes
1
answer
44
views
HTML text colors not showing correctly in Notifee notifications on Android dark mode (Expo)
I'm using Notifee with React Native Firebase Cloud Messaging (FCM) to display styled notifications that include HTML tags such as <b>, <i>, and <font color='green'>.
In light mode, ...
0
votes
1
answer
37
views
Android: Why is onNewIntent() not called from Notification click while using singelInstance launchMode
I have an Android app where I want to show a notification when the app is running in the background.
The associated Activity is declared in the manifest with:
<activity
android:name="....
1
vote
0
answers
88
views
Different NotificationChannels are merging together - unwanted behavior
I'm targeting my application on API36 and testing it on my phone (Android 16 Samsung, OneUI8).
My app creates 2 notification channels (Other actions and User actions). Status notification and User ...
0
votes
0
answers
59
views
Add custom media notifcation actions
I started building a Material 3 Expressive music player app built mainly on Java (~85%).
To prevent confusion, I'll provide a direct link to the entire thing just in case: Main Player Service | ...
0
votes
0
answers
32
views
OneUI8: ongoing notification gets overridden
I have an application which I'm using since at least a decade.
Now with Samsung's OneUI8, and Android14 update, my notifications are completely ruined.
I have:
3 different notification channels.
1 ...
0
votes
0
answers
95
views
Android 16 Live Notifications on Samsung One UI 8 vs Pixel
One UI 8 is based on Android 16 and it does seem to display Google Maps and a few other Live Notifications from Google. However when I tried integrating Progress Centric Live Notifications on Galaxy ...
0
votes
2
answers
51
views
Media3 is not starting foreground service
in my project i have an audio controller class
class AudioController(val context: Context){
private val player = ExoPlayer.Builder(context).build()
private val _state = MutableStateFlow(...
0
votes
0
answers
42
views
Questions on progress-centric notifications due to poor documentation
I'm reading the very "thin" documentation on Progress Centric notifications https://developer.android.com/about/versions/16/features/progress-centric-notifications – hoping this is somewhat ...
0
votes
0
answers
82
views
What is this badge on my notification and where do I modify it?
You can see a tiny Flutter logo next to the caller avatar/profile. I've seen the exact same in every calling app and it's always the app icon. Here, however, despite changing the app icon multiple ...
0
votes
0
answers
64
views
Progress notification not showing segmentation colors or progress icon on older Android versions
I have implemented a progress notification using the Android SDK (targeting version 36). The notification works and the progress updates correctly on Android 16, but on older Android versions the ...
0
votes
1
answer
91
views
Persistent Meet-like Flutter notifications for ongoing calls
I have an app that, using WebRTC, is able to successfully connect and hold a video call. The actual call logic while the app is open is a separate concern but what I was looking for, is the classic &...
1
vote
1
answer
52
views
How do I show a dynamic number in notification status bar in android?
I am creating a timer application with multiple tools. While on timer, I want to show the seconds or time in the status bar. As of now, I am following the below approach,
Convert text to a Bitmap
...
1
vote
1
answer
102
views
Android Wear OS: How do I open my activity or make a pop up notification, from my foreground service, when the screen is blacked out
I have an Android Wear OS emergency app, which monitors the user and looks out for emergency events. When the app is closed, I use a foreground service, to keep monitoring in the background. This ...