Group notifications on a wearable from the micro app
I build a micro app for a wearable now I'm working with notifications on the device. Here is my example code: NotificationCompat.Builder builder = new NotificationCompat.Builder(context) .setContentTitle(title) .setContentText(message) .setSmallIcon(icon) .setGroup(groupKey); NotificationManagerCompat notificationManager = NotificationManagerCompat.from(context); notificationManager.notify(id, builder.build()); This notification is never shown and it does not matter if I have one or multiple notifications with the same group key. Do you know what I'm doing wrong? Just for clarification I