I\'ve probblem. My android wear emulator not show notification. Here is my code for mobile:
private void notifyToWear() {
NotificationCompat.Wearable
Try this:
NotificationCompact.Builder notBuilder =
new NotificationCompact.Builder(this);
notBuilder.setContentTitle("Title").setContentText("Text");
WearableNotifications.Builder wearBuilder =
new WearableNotifications.Builder(notBuilder);
Notification not = wearBuilder.build();
NotificationManagerCompat manager = NotificationManagerCompat.from(this);
manager.notify(0,not);
I hope this will help you..