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 ? I使用 bb10 sdk 安装调试令牌,所以在我的设备上,在我的安全 >> 开发模式选项卡中,我有:调试令牌......。安装有效............是的作者............ - 到期 Thu Jan 17 2013 04:19:43 PM

我尝试使用/不使用标签进行 2 次部署

配置文件

<?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 文件。用记事本打开它。从那里获取价值并重建您的应用程序。如果这没有帮助,则重建调试令牌并确保将其安装在设备上。调试令牌需要有正确的设备引脚。

如果此评论对您有所帮助,请单击“竖起大拇指”图标!如果您的问题得到解决,请单击解决方案上的解决方案按钮!” -source http://supportforums.blackberry.com/t5/Web-and-WebWorks-Development/Failure-881-Application-Author-does-not-匹配调试令牌作者/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

作者标签的值必须与您在创建 BlackBerry 签名密钥期间提供的公司名称相匹配。

于 2013-01-03T10:10:39.453 回答
0

用文本编辑器打开文件blackberry-tablet.xml,文件在你的<BlackBerry WebWorks SDK Tablet install folder>\bbwp\AirAppTemplates\src\.

您应该会看到类似以下内容的部分:

<publisher>Sample Inc.</publisher>
<category>core.internet</category>

在本节之后,您必须添加

<author>*replace with your author name info*</author>
<authorId>*replace with your author id info*</authorId>

您必须从您上传到 PlayBook 的调试令牌中获取您的作者和作者 ID 信息。您应该在您的计算机上拥有调试令牌,将 .bar 重命名为 .zip 并解压缩。使用文本编辑器在 MANIFEST.MF 文件的 META-INF 文件夹中查找实际字符串值的值,Package-Author:然后Package-Author-Id:是实际字符串值。

希望这可以帮助。

于 2014-01-12T10:23:08.317 回答