Hi,
I make two native applications(ui and service app) that has same pakcage id.
ui application is checked 'multi package' service application.
'on-boot' of service app setting is 'true'.
If I press 'run as > Tizen native application' in ui application. Two applications are installed. but, service app is not launched.
I add part of manifest files.
<manifest xmlns="http://tizen.org/ns/packages" api-version="2.3.2" package="akawiki.egloos.com.a40hours" version="1.0.0"> <profile name="wearable"/> <service-application appid="akawiki.egloos.com.a40hours.service" auto-restart="true" exec="40hours.service" multiple="false" nodisplay="true" on-boot="true" taskmanage="false" type="capp"> |
<manifest xmlns="http://tizen.org/ns/packages" api-version="2.3.2" package="akawiki.egloos.com.a40hours" version="1.0.0"> <profile name="wearable"/> <ui-application appid="akawiki.egloos.com.a40hours.ui" exec="40hours.ui" multiple="false" nodisplay="false" taskmanage="true" type="capp"> |
How can I launch two applications?