嗨,我是黑莓新手,我为 BB10 开发了一个应用程序。我已经在模拟器上对其进行了测试,它工作正常。但是当我尝试在 BB10 dev alpha 设备上启动应用程序时,它会给出错误“由于错误 22 无法启动应用程序”。我使用的步骤:
首先,我使用以下方法创建了开发人员证书:
blackberry-signer -register -csjpin <csj pin> -storepass <KeystorePassword> <client-RDK-xxxxxx.csj file><client-PBDT-xxxxx.csj file>
其次,我使用以下方法创建了一个调试令牌:
blackberry-debugtokenrequest -storepass <KeystorePassword> -devicepin <device PIN> <debug_token_file_name.bar>
然后我使用以下命令在 dev alpha 设备中安装了调试令牌:
blackberry-deploy -installDebugToken <path to debug token> -device <IP address of device> -password <device password>
然后我使用以下方法编译了应用程序:
bbwp [drive:][path]archive -d [-o dir]
然后我使用以下语法部署了应用程序:
blackberry-deploy -installApp -password <device password> -device <IP address of device> -package <BAR file path>
该应用程序已正确安装在设备中,但是当我单击应用程序图标时出现错误 22。
请帮助我,以便我可以在设备上启动应用程序。
------ ------- ------ ------- ------ ------- ------ ----- -- ------ ------- ------ --------
当我尝试通过涟漪启动应用程序时,我也遇到了同样的错误。这是我在 cmd 提示符下看到的内容。
2013-02-28 11:13:31 GET /ripple/build_status/6362 200
Info: Sending request: Install and Launch
Info: Action: Install and Launch
Info: File size: 411108
Info: Installing App.testDev_App___dbc068a4...
Info: Processing 411108 bytes
Info: Progress 96%...
Info: Progress 100%...
actual_dname::App.testDev_App___dbc068a4
actual_id::testDev_App___dbc068a4
actual_version::2.0.0.0
result::success
Info: Launching App.testDev_App___dbc068a4...
Error: Error loading application package: Invalid argument
请帮助,以便我可以继续。提前致谢。
更新
<?xml version="1.0" encoding="utf-8"?>
<widget xmlns="http://www.w3.org/ns/widgets"
xmlns:rim="http://www.blackberry.com/ns/widgets"
version="2.0.0.0" id="someId">
<author href="https://www.example.com/"
rim:copyright="Copyright 1998-2012 My Corp">quepp</author>
<name>appName</name>
<description>
description
</description>
<!--<icon src="icon"/>-->
<content src="index.html"/>
<feature id="blackberry.app">
<param name="backgroundColor" value="FFFFFF" />
</feature>
<feature id="blackberry.app">
<param name="orientation" value="portrait" />
</feature>
<feature id="blackberry.ui.dialog"/>
<feature id="blackberry.identity" />
<access uri="*" subdomains="true" />
<license href="" />
<rim:permissions>
<rim:permit>access_shared</rim:permit>
<rim:permit>read_device_identifying_information</rim:permit>
</rim:permissions>
</widget>