0

t deploy an unsigned bar to my playbook device , because the of : failure 881 application author does not match debug token author. How can I fix this ? Ibb10 sdk を使用してデバッグ トークンをインストールできます。そのため、デバイスの [セキュリティ] >> [開発モード] タブに次のものがあります。はい 作成者............ - 有効期限 Thu Jan 17 2013 04:19:43 PM

タグあり/なしで2回くらい展開しようとしました

config.xml

<?xml version="1.0" encoding="UTF-8"?>
<widget xmlns="http://www.w3.org/ns/widgets"
xmlns:rim="http://www.blackberry.com/ns/widgets"
version="1.0.0.0"
>

<name>AppDev2.0</name>
<author>-</author> <!-- and without <></> and still pops me the failure 881 author problem -->
<icon src="assets/icon.png"/>

<content src="index.html"/>

<rim:permissions>
    <rim:permit>access_location_services</rim:permit>
</rim:permissions>

<!-- for flickr search data (json) -->
<access uri="http://api.flickr.com" />
<!-- for flickr images from farm1. to farm9.  -->
<access uri="http://staticflickr.com/" subdomains="true" />

<!-- for google image search data (json) -->
<access uri="https://ajax.googleapis.com" />
<!-- for google images from t0. to t3. -->
<access uri="http://gstatic.com" subdomains="true"/>

<!-- for weather data (xml) from free. and icons from www. -->
<access uri="http://worldweatheronline.com/" subdomains="true"/>

<!-- used to create dialogs (location-details.js, splash.js, saved-locations.js-->
<feature id="blackberry.ui.dialog"/>
<!-- to enable the application to invoke the browser -->
<feature id="blackberry.invoke"/>
<!-- to trap the onswipedown event -->
<feature id="blackberry.app"/>

</widget>
4

4 に答える 4

3

「同様の問題がありました。blackbery-tablet.xml とフィールドが正しいことを確認してください。

これらのフィールドの正しい値を取得するには、パックされた .bar ファイルの名前を .zip に変更してから、アーカイブを解除します。META-INF フォルダーに manifest.mf ファイルがあります。メモ帳で開いてください。そこから値を取得して、アプリを再構築します。それでも問題が解決しない場合は、デバッグ トークンを再構築し、デバイスにインストールしてください。デバッグ トークンには正しいデバイス ピンが必要です。

このコメントが役に立った場合は、高評価アイコンをクリックしてください。問題が解決した場合は、解決策の解決ボタンをクリックしてください! 」 match-debug-token-author/mp/2055935#M32567

于 2012-12-24T22:37:40.037 に答える
1

同様の問題がありました。これは「作成者」の問題ではありませんでした。デバッグモードでデプロイしようとしたところ、debugToken がデバイスにインストールされていませんでした。

デプロイが機能するように、debugToken がデバイス上にある必要があります。次の方法で debugToken をアップロードできます。

blackberry-deploy -installDebugToken debugtoken.bar -device 169.254.0.1 -password 

お役に立てれば :)

于 2013-08-02T07:50:53.453 に答える
0

author タグの値は、BlackBerry Signing キーの作成時に指定した会社名と一致する必要があります。

于 2013-01-03T10:10:39.453 に答える