in common/src/main/java/com/example/android/uamp/media/MusicService.kt [569:583]
override fun onNotificationPosted(
notificationId: Int,
notification: Notification,
ongoing: Boolean
) {
if (ongoing && !isForegroundService) {
ContextCompat.startForegroundService(
applicationContext,
Intent(applicationContext, this@MusicService.javaClass)
)
startForeground(notificationId, notification)
isForegroundService = true
}
}