欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

How do I deploy a Tizen application to the Tizen emulator

程序员文章站 2022-04-24 16:49:35
...

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 

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

http://*.com/questions/14294677/how-do-i-deploy-a-tizen-application-to-the-tizen-emulator

转载于:https://www.cnblogs.com/androidme/archive/2013/05/02/3054144.html