Added car notification extender

pull/197/head
M66B 4 years ago
parent bfbacfc21d
commit dc4df306c7

@ -4564,12 +4564,15 @@ class Core {
} }
// https://developer.android.com/training/wearables/notifications // https://developer.android.com/training/wearables/notifications
// https://developer.android.com/reference/android/app/Notification.WearableExtender // https://developer.android.com/reference/androidx/core/app/NotificationCompat.Action.WearableExtender
mbuilder.extend(new NotificationCompat.WearableExtender() mbuilder.extend(new NotificationCompat.WearableExtender()
.addActions(wactions) .addActions(wactions)
.setDismissalId(BuildConfig.APPLICATION_ID + ":" + id) .setDismissalId(BuildConfig.APPLICATION_ID + ":" + id)
/* .setBridgeTag(id < 0 ? "header" : "body") */); /* .setBridgeTag(id < 0 ? "header" : "body") */);
// https://developer.android.com/reference/androidx/car/app/notification/CarAppExtender
mbuilder.extend(new NotificationCompat.CarExtender());
notifications.add(mbuilder); notifications.add(mbuilder);
} }

Loading…
Cancel
Save