I would like to send some data (string) from Android application to my Smartwatch extension.
I create an Intent in my Main Activity and send it using startService().
From that I understand, I have to override onStartCommand() in a class that extends ExtensionService.
My question is how my class that extends ControlExtension will be notify of this Intent ?
Thanks in advance