-
-
Notifications
You must be signed in to change notification settings - Fork 33
Open
Labels
Description
Feature Request
Thank you for all the great work!
It would be awesome if it could support a custom foreground service icon for Android. If a bundled image path (e.g., ./assets/notification-icon.png) is provided, the notification could use that instead.
Example (app.json):
{
"plugins": [
[
"react-native-audio-api",
{
"androidPermissions": [
"android.permission.MODIFY_AUDIO_SETTINGS",
"android.permission.FOREGROUND_SERVICE",
"android.permission.FOREGROUND_SERVICE_MEDIA_PLAYBACK"
],
"androidForegroundService": true,
"androidFSTypes": [
"mediaPlayback"
],
"androidForegroundServiceIcon": "./assets/notification-icon.png"
}
]
]
}