I have a foreground service who's icon & text I update using the following code. On Android 7 (Nexus 5X, Android 7.0, Security patch level 5 Oct 2016) the same code updates the text but not the icon.
I've attached a test project that shows the issue. Pressing the only button in the activity changes the notification text and icon which works on Android 6 but not Android 7.
B4X:
Sub SetNotif(icon As String, message As String)
Log("SetNotif("&icon&","&message&")")
notif.Icon = icon
notif.AutoCancel = False
notif.Vibrate = False
notif.Sound = False
notif.SetInfo("Test Notification icon", message, Main)
notif.Notify(1)
End Sub
I've attached a test project that shows the issue. Pressing the only button in the activity changes the notification text and icon which works on Android 6 but not Android 7.