Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I deploy a Tizen application to the Tizen emulator?

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).

like image 332
Jimmy Collins Avatar asked Jan 12 '13 15:01

Jimmy Collins


People also ask

How do I run a project on Tizen emulator?

To run the application on the emulator, do one of the following: In the Project Explorer view, right-click the project and select Run As > Tizen Web Application. In the Tizen Studio menu, go to Run > Run As > Tizen Web Application. On the Tizen Studio toolbar, click Run.

What is Tizen emulator?

The Tizen Emulator is a tool that reduces the inconvenience of testing the application on a real device, by providing an environment similar to a real device. In other words, if you do not have the real device, you can test on a virtual device with similar features.


1 Answers

For web applications (widgets:

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

For widgets using Command Line Interface tools web-install::

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

or using webtizen:

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

For native 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 using Command Line Interface tools native-install:

native-install -p your.tpk

using sdb:

sdb install /home/user/your.tpk 
like image 72
Eduard Florinescu Avatar answered Oct 04 '22 20:10

Eduard Florinescu