Reputation: 59
I am trying to create a Tizen app for the Samsung Gear S2. For submission of the app I need to provide a binary. What file type is the binary? Is it .tpk
or .wgt
? How to I force the Tizen IDE to create this output file?
Upvotes: 0
Views: 1849
Reputation: 1747
Follow below steps to generate the binary(tpk/wgt).
If Web App
If Native App
Upvotes: 2
Reputation: 9068
According to the official developer documentation
The Content Type of a binary is automatically detected and displayed [...]
In this context, several Tizen binary types exist:
Native (Wearable-Intergrated) - *.tpk
- Integrated
Native (Wearable-Linked) - *.tpk
- Linked
Web (Wearable-Integrated) - *.wgt
- Integrated
Web (Wearable-Linked) - *.wgt
- Linked
Web (Wearable-Standalone) - *.wgt
- Standalone
Thus, to create a binary of your Tizen project you have to configure all supported target devices and all other project properties according to the developer guide (see link). Then:
if saving is properly processed after the [Save] button is clicked, the information of the uploaded binary are automatically detected from the
manifest.xml
orconfig.xml
file.
Hope it helps.
Upvotes: 2