Android Wear: ouça as notificações recebidas

É possível ouvir notificações recebidas em um aplicativo Android Wearable? Eu tentei implementar umNotificationListenerService, mas o serviço éonNotificationPosted () nunca é chamado:

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.");
    }
}

questionAnswers(2)

yourAnswerToTheQuestion