我正在尝试在三星模拟器上运行示例电视网络应用程序,但出现错误:Unexpected stop progress...
其中 config.xml 是:-<?xml version="1.0" encoding="UTF-8"?><widget xmlns="http://www.w3.org/ns/widgets" xmlns:tizen="http://tizen.org/ns/widgets" id="http://yourdomain/HelloTizen" version="1.0.0" viewmodes="maximized"> <tizen:application id="AYtSQMvNTh.HelloTizen" package="AYtSQMvNTh" required_version="2.3"/> <content src="index.html"/> <feature name="http://tizen.org/feature/screen.size.all"/> <icon src="icon.png"/> <name>HelloTizen</name> <tizen:privilege name="http://tizen.org/privilege/application.launch"/> <tizen:privilege name="http://tizen.org/privilege/tv.inputdevice"/> <tizen:profile name="tv"/> <tizen:setting screen-orientation="portrait" context-menu="enable" background-support="disable" encryption="disable" install-location="auto" hwkey-event="enable"/></widget>
也不在模拟器中安装 .wgt 文件
最佳答案
我也有同样的问题。
检查是否可以使用 sdb shell
命令连接到模拟器。 sdb.exe
位于 Tizen Studio 位置的“工具”目录中。
如果 sdb shell
返回“关闭”,则表示模拟器拒绝连接。
我建议创建“自定义”模拟器图像:
Emulator Manager->Create->TV->tv-...(自定义)
编辑:
要在新模拟器上运行 Web 应用程序,您必须 更改平台 。
在 config.xml
中:<tizen:profile name="tv"/>
至:<tizen:profile name="tv-samsung"/>
在 .tproject
中:
<platform>
<name>tv-5.0</name>
</platform>
至
<platform>
<name>tv-samsung-5.0</name>
</platform>
或者当您创建新项目时:
新建项目 -> 模板 -> 自定义(扩展) -> 从下拉列表中选择 TV-samsung v5.0。
关于Tizen TV Web 应用程序 : Unexpected stop progress,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/56163113/