Tizen Web app does not open on Emulator

三世轮回 提交于 2019-12-11 14:17:12

问题


I'm trying to test my web app example, but, when I try to use it on Emulator nothing happens. The log shows this message every time I try to open my web app:

07-08 04:42:16.832 : INFO / Tizen::App ( 2258 : 2258 ) : static int Tizen::App::_AppLifecycleManager::TerminateCallback(int, void*)(741) > [E_OBJ_NOT_FOUND] Cannot acquire app from pid 2435.

I have the GPU option enabled, I'm using the 2.2.1 version of SDK on Windows 7 64bits and I enabled the Intel virtualization, but, it's not activated for my emulator.

Has anyone seen something like this? I can't test anything I do because my apps don't open, the native apps work properly, this problem is only with the web ones.


回答1:


you can try to do this manually:

sdb install your_app.wgt

Then application icon will show on emulator and you can run the app. If you want to debug you can:

$sdb shell
$wrt-launcher -d -s your_app_id #id looks like eg.: xFS7seZxmM.CallLog 
port: 45849
result: launched
$exit
$sdb forward tcp:45849 tcp:45849

then in your localhost, on 45849 port you will have chrome debug console. You just have to open chrome and type url: localhost:45849 and you will get connected.

You can also try to install SDK 2.3 and check do you still have the same problem :)



来源:https://stackoverflow.com/questions/24618596/tizen-web-app-does-not-open-on-emulator

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!