Hello,
I'm developing a Tizen wearable background service, which communicates with an Android app.
I need to start the service at boot time, but I cannot find in the doc how I can do that.
Here is my manifest :
<service-application appid="APP_ID" on-boot="true" auto-restart="true" exec="EXEC_NAME" multiple="false" nodisplay="true" taskmanage="false" type="capp">
I've added on-boot="true" and auto-restart="true", but according to the dev guide it does not work on wearable device :
> This attribute is not supported in Tizen wearable devices.
If I cannot start the service automatically at boot time, is there a way to start it from the Android app ?