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