I see Tizen has the Smart Development Bridge (sdb, similar to adb for Android), but it doesn't have an 'install' command as the Android Debug Bridge has on Android.
Can someone give me the steps to deploy/execute a Tizen application on the Tizen emulator?
I want to be able to do this outside of the Tizen development environment (these steps are required by QA).
This is how eclipse do it. Hope it'll help
With Tizen SDK 2.3.1 & above. We can install/uninstall widgets/Apps with
sdb install Application.wgt
sdb uninstall Application.wgt
sdb
is like androidadb
shell utility. If its not available on the system path. Go to the directory where it is installed/available and run it along with the path to you widget.For web applications (widgets:
For widgets using Command Line Interface tools web-install::
or using webtizen:
For native packages:
For native using Command Line Interface tools native-install:
using sdb:
You can see all the commands that eclipse uses to deploy applications in Preferences > Tizen SDK > Web > Launch
sdb push app.wgt /tmp/Application.wgt
sdb shell wrt-installer -i /tmp/Application.wgt
Second command is not working for me,
wrt-installer
is not recognised by sdbsince 2.0a there is CLI for this. I will describe how to use 2.0 released in 2012: C:\tizen-sdk\tools\ide\bin\ there are CLI tools. You need web-install and web-run 1. intall app web-install.bat -w tizenapp.wgt 2 Run installed application: web-run -i XXXXXX where XXX is aplication id(find it in your config.xml)
For native applications (tpk) same tools available native-install and native-run see more in documentation on this tools https://developer.tizen.org/help/index.jsp?topic=%2Forg.tizen.native.appprogramming%2Fhtml%2Fide_sdk_tools%2Fcommand_line_interface.htm