After adding a wear module to an old app, I found that the messages sent by my wearable were not waking up my WearableListenerService implementation.
After several wasted hours, I noticed that the wear module’s package name was wrong.
This is how it was, and how I fixed it.
BAD: [module: app] es.voghdev.myapp [module: wear] es.voghdev.myapp.wear GOOD: [module: app] es.voghdev.myapp [module: wear] es.voghdev.myapp
It finally works. Made me waste several valious hours!!
I hope that you, reader don’t fall on the same pit! 🙂 also replied this SO question.
Have a nice coding day!