I am using LG Watch Urban. I have successfully connected the watch with the phone and the watch is showing all the notification from gmail, linkedin and other apps. I wrote a mobile application, to send notification. But this notification does not appear in the watch but notification comes in mobile phone. I don't know what is the reason for this. I used below code,
NotificationCompat.Builder notificationBuilder =
new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.ic_adb_black_24dp)
.setContentTitle("Title")
.setContentText("Hello World");
NotificationManagerCompat notificationManager =
NotificationManagerCompat.from(this);
notificationManager.notify(notificationId,notificationBuilder.build());
I verified that Companion Android wear app, does not have my mobile app in the blocked app list. Any help would be greatly appreciated.