3

尝试从 Tizen IDE 启动本机手表应用程序时,我看到奇怪的消息“某些应用程序类别,例如“手表应用程序”,无法通过“运行方式”启动。

实际上,我尝试使用项目本地菜单中的 Run As 来启动我的应用程序。但是我应该如何在模拟器上启动我的应用程序?

模拟器设备(手表)已启动并运行,在桌面上作为单独的小部件可见。它被选中。签名配置已设置。

在控制台输出上,我看到了消息processing result : FATAL_ERROR [61]

我还尝试通过创建的启动配置启动,但这会导致相同的错误消息。

IDE 日志显示以下堆栈跟踪:

[2015.09.06 12:16:48][ERROR] ConnectionExplorer.java(658) - Fail to get platform log
[2015.09.06 12:18:59][ERROR] RdsDeployer.java(269) - Cannot partially upload or reinstall
org.eclipse.core.runtime.CoreException: [RDS] Cannot install application
    at org.tizen.common.rds.RdsDeployer.newCoreException(RdsDeployer.java:699)
    at org.tizen.common.rds.RdsDeployer.postInstall(RdsDeployer.java:634)
    at org.tizen.common.rds.RdsDeployer.partialZipInstall(RdsDeployer.java:566)
    at org.tizen.common.rds.RdsDeployer.deploy(RdsDeployer.java:267)
    at org.tizen.nativecommon.launch.TizenLaunchDelegate2.deployApplication(TizenLaunchDelegate2.java:783)
    at org.tizen.nativecommon.launch.TizenLaunchDelegate2.launchApplicationForRun(TizenLaunchDelegate2.java:504)
    at org.tizen.nativecommon.launch.TizenLaunchDelegate2.launch(TizenLaunchDelegate2.java:216)
    at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:858)
    at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:707)
    at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1018)
    at org.eclipse.debug.internal.ui.DebugUIPlugin$8.run(DebugUIPlugin.java:1222)
    at org.eclipse.core.internal.jobs.Worker.run(Worker.java:53)
Caused by: org.tizen.common.sdb.command.message.CommandErrorException: 
Error code: FATAL_ERROR
Error message: 
Command: /usr/bin/pkgcmd -q -r -t tpk -n com.au.heywatch
Management: Installation or uninstallation is not working temporarily.

PS 我添加了“eclipse”标签,因为 Tizen SDK 很明显是基于 Eclipse 的 IDE。使用 Tizen IDE 2.3.1。

4

2 回答 2

5

表盘应用程序(Web/native)永远不会作为小部件安装。您无法在应用程序菜单中看到它们。

原因:在项目的 tizen-manifest.xml 文件中,您会在下面的行中找到

<watch-application appid="org.tizen.watchsample" exec="watchsample" ambient-support="true">

这使您的应用程序成为手表应用程序,这些应用程序被称为表盘,因为它们将被用作齿轮的主要手表。

模拟器上,您无法更改主屏幕上的表盘。因此,您将无法以这种方式测试您的手表应用程序。

于 2015-09-07T03:31:12.507 回答
0

有同样的问题。我的问题是证书设置。

我按照那里的说明进行操作:http: //127.0.0.1 :50224/help/topic/org.tizen.addon.certificate/html/dev_env/setting_author_certificate.htm (链接来自帮助,应该在 Tizen IDE 启动时在浏览器中工作,或者,您可以转到 Tizen IDE -> 帮助 -> 帮助内容并搜索证书。

更具体:我的经销商证书是错误的(使用三星通过电子邮件收到的通行证)

修复证书后,不要忘记在连接资源管理器中右键单击您的设备,然后单击允许安装应用程序

于 2015-12-27T08:58:09.870 回答