Hi
I created multi-project package like described here:
https://developer.tizen.org/dev-guide/2.2.0/?topic=%2Forg.tizen.native.appprogramming%2Fhtml%2Fapp_dev_process%2Fmultiple_project_dev_package.htm
but I noticed service app is not installed (can't find on the list of installed apps in Settings) and not started.
After opening TPK, service app and UI-app are placed in binary folder. Service part of manifest is appended to UI-app manifest. All seems to be OK.
I created Service app by Project Wizard. Service manifest:
<Apps>
<ApiVersion>2.2</ApiVersion>
<Privileges/>
<ServiceApp AutoRestart="True" LaunchOnBoot="True" LaunchingHistoryVisible="False" Main="True" Name="WatcherService" UseUi="True">
<DisplayNames>
<DisplayName Locale="eng-GB">WatcherService</DisplayName>
</DisplayNames>
<Icons>
<Icon Section="MainMenu">mainmenu.png</Icon>
</Icons>
<LaunchConditions/>
<Notifications/>
</ServiceApp>
I suppose the service app and UI-app both should be installed and both started one by one. But installed and started is only UI-app.
slaw