Is it possible to listen for incoming notifications in an Wearable Android App? I have tried to implement a NotificationListenerService, but the service's onNotificationPosted() is never called:
public class MyListenerService extends NotificationListenerService { @Override public void onCreate() { super.onCreate(); Log.d("NotificationListener", "This works...."); } @Override public void onNotificationPosted(StatusBarNotification sbn) { Log.i("NotificationListener", "... but this method won't be called."); } }