0

嗨,我是黑莓新手,我为 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>
4

2 回答 2

0

我使用签名密钥,所以只需使用它们。(命令行参数可以更改)cd C:\Program Files\Research in Motion\BlackBerry 10 WebWorks SDK 1.0.4.11

之后,签署应用程序

bbwp FOLDER_APP -g PASS_KEY --buildId NUMBER -o OPUTPUT FOLDER -d

在哪里:

-d => debug
FOLDER APP => where you have your webworks app
PASS_KEY => the password to sign an app(I supose you can ignore this parameter)

之后,前往

cd dependencies\tools\bin

并部署应用程序:

blackberry-deploy -installApp -password PASS_DEVICE -device IP -package BAR FILE

在哪里:

password => the password of your device fixed AFTER activating the development mode.
IP => the IP of your device(I deploy via WIFI).
BAR FILE => path to your previously generated bar file.
于 2013-09-02T12:05:44.273 回答
0

您的应用程序是否需要访问某些受限资源,例如相机或文件?

在这种情况下,您需要在 config.xml 中添加相关权限。

于 2013-05-29T14:24:22.443 回答