Created
May 6, 2013 10:04
-
-
Save renehennig/5524295 to your computer and use it in GitHub Desktop.
TIZEN Manual
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(source of documentation: https://developer.tizen.org/help/index.jsp?topic=%2Forg.tizen.web.appprogramming%2Fhtml%2Fide_sdk_tools%2Fcommand_line_interface.htm) | |
First of all, install the Tizen SDK and go to folder 'tizen-sdk/tools/ide/bin' and connect your phone to your PC via USB | |
Create a widget | |
./web-packaging <target path for a widget> <project folder> | |
e.g. : ./web-packaging /Users/oggyindahouse/workspace/HRS1/HRS1.wgt /Users/oggyindahouse/workspace/HRS1 | |
Deploy a widget | |
./web-install -w <path of widget file> | |
./web-install -w /Users/oggyindahouse/workspace/HRS1/HRS1.wgt | |
Debug a installed widget | |
./web-debug -i <id of installed widget> | |
e.g. : ./web-debug -i dzMh153SDc | |
Signing | |
1.change to following folder | |
cd /Users/oggyindahouse/tizen-sdk/tools/certificate-generator | |
2.with following command create a .p12 file | |
./certificate-generator.sh | |
3.A profile.xml file is generated in a hidden directory in your workspace. The path is <Your workspace directory>/.metadata/.plugins/org.tizen.common.sign/profile.xml. Copy the profile.xml file to the ~/tizen-sdk/tools/ide/conf directory. | |
4.Sign with created profile | |
web-signing –profile <profile name used in profile.xml>:<Absolute path of profile.xml> | |
e.g. : ./web-signing –profile hrs:/Users/oggyindahouse/tizen-sdk/tools/ide/conf/profiles.xml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment