How to deploy Tizen app for Tizen emulator?

I see that Tizen has a Smart Development Bridge (sdb, similar to adb for Android), but it does not have an โ€œinstallationโ€, since Android Debug Bridge is on Android.

Can someone give me steps to deploy / run the Tizen application on a Tizen emulator?

I want to be able to do this outside of the Tizen development environment (these steps are required by QA).

+4
source share
6 answers

For web applications (widgets:

sdb push app.wgt /tmp/Application.wgt sdb shell wrt-installer -i /tmp/Application.wgt 

For widgets using the web-install command-line interface Tools :

 web-install -w Application.wgt -i application_uri_id.org 

or using webtizen:

 webtizen install -w Application.wgt -i application_uri_id.org 

For own packages:

 sdb push your.tpk /opt/apps/PKGS/Application.tpk sdb shell pkgcmd -q -i -t tpk -p /opt/apps/PKGS/Application.tpk 

For native use native-install command line interface tools :

 native-install -p your.tpk 

using sdb:

 sdb install /home/user/your.tpk 
+7
source
 sdb push app.wgt /sdcard/app.wgt sdb shell wrt-installer -i /sdcard/app.wgt 

You can see all the commands that eclipse uses to deploy applications in the settings> Tizen SDK> Web> Launch

+4
source
 sdb push your.tpk /opt/apps/PKGS/your.tpk sdb shell pkgcmd -q -i -t tpk -p /opt/apps/PKGS/your.tpk 

Here's how an eclipse does it. Hope this helps

+2
source

since 2.0a there is a 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 installation and web start 1. intall web-install.bat -w tizenapp.wgt application 2 Run the installed application: web-run -i XXXXXX where XXX is the application id (find it in your config.xml file)

For native applications (tpk), the same native-install and native-run tools are available; for more details, see the documentation for these tools https://developer.tizen.org/help/index.jsp?topic=%2Forg.tizen.native.appprogramming % 2Fhtml% 2Fide_sdk_tools% 2Fcommand_line_interface.htm

+2
source
  • sdb push app.wgt /tmp/Application.wgt
  • sdb shell wrt-installer -i /tmp/Application.wgt

The second command does not work for me, wrt-installer not recognized by sdb

+2
source

With Tizen SDK 2.3.1 and higher. We can install / uninstall widgets / applications using

sdb install Application.wgt

sdb uninstall Application.wgt

sdb is similar to the android adb shell utility. If it is not available on the system path. Go to the directory in which it is installed / available, and launch it along with the path widget to you.

+2
source

All Articles