Sending data from an Activity to WearableListenerService
When I read about communication between an Activity and Service , I found that we can use either IBinder Messenger AIDL I am interested in the first two. So when I tried implementing this to communicate between an Activity and WearableListenerService , I needed to override the onBind function. But then, I am getting a compiler error saying it cannot override final method "onBind" I dont get such an error when I use a normal Service . So, 1. Does that mean we cannot use IBinder or Messenger approach to communicate with the WearableListenerService from an Activity ? 2. If so, what is the next