<?xml version="1.0" encoding="utf-8"?> <manifest package="com.foxlovesyou.Censored" version="0.1.0" api-version="4" xmlns="http://tizen.org/ns/packages"> <author email="Censored@gmail.com">FoxLovesYou</author> <profile name="wearable" /> <service-application appid="com.foxlovesyou.Censored.Service" exec="Service.dll" multiple="false" nodisplay="true" taskmanage="false" type="dotnet"> <label>Service</label> <icon>Service.png</icon> <splash-screens /> </service-application> <ui-application appid="com.foxlovesyou.Censored.App" exec="App.dll" multiple="false" nodisplay="false" taskmanage="true" type="dotnet" launch_mode="single"> <label>Censored</label> <icon>Censored.png</icon> <metadata key="http://tizen.org/metadata/prefer_dotnet_aot" value="true" /> <metadata key="HeartRate" value="0" /> <splash-screens /> </ui-application> <widget-application appid="com.foxlovesyou.Censored.Widget" exec="Widget.dll" multiple="false" nodisplay="false" taskmanage="true" type="dotnet" launch_mode="single"> <label>Widget</label> <icon>FoxMC.png</icon> <metadata key="http://tizen.org/metadata/prefer_dotnet_aot" value="true" /> <support-size preview="Widget.png">2x2</support-size> <splash-screens /> </widget-application> <shortcut-list /> <privileges> <privilege>http://tizen.org/privilege/healthinfo</privilege> <privilege>http://tizen.org/privilege/externalstorage.appdata</privilege> </privileges> <provides-appdefined-privileges /> <feature name="http://tizen.org/feature/sensor.heart_rate_monitor">true</feature> <feature name="http://tizen.org/feature/sensor.pedometer">true</feature> </manifest>
Attempting to combine a UI-Application, Service, and Widget as a packaged application in Visual Studio 2017. Following instrcutions at https://github.com/Samsung/build-task-tizen/blob/master/doc/tizen.net.sdk-packaging-multiapp.md
- Created a new Xamarin.Forms Blank App (currently, new Service App)
- Added Project References
- Added Project Dependencies
- Added File References to App.dll, Service.dll, Widget.dll (and set copy to directory)
- Manually copied RES and SHARED
- Manually modified the Manifest to merge the different application types and requested priviledges
- Rebuild Solution & Debug
- ...
- Locks at "Initializing Debugger", no error messages, no response on emulator
Running the App, Widget, or Service individually works fine. All apps "package" id's match. All App-ID's are unique subsets of the package id. I've also tried converting the Service to act as the multi-package app, tried using priviledges and features directing to the app name (as exampled in the github page), tried making individual Project Dependencies, tried adjusting the Build Order. Nothing seems to get me any closer.
- Emulator: Wearable Circle - wearable-4.0-circl-x86 360x360
- IDE: Visual Studio 2017
- TIZEN_SDK_VERSION: 3.7
- Target Version: Tizen 4.0