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가있는 디버그 토큰을 설치할 수 있습니다. 따라서 내 장치의 내 보안 >> 개발 모드 탭에 다음 코드가 있습니다. 디버그 토큰 ....... 설치됨 유효 ....... ..... 예 작성자 ............ - 만료 2011 년 1 월 17 일 04:19:43 PMBlackberry 게임 플레이 북에 디버그 토큰과 함께 앱을 배포하는 방법은 무엇입니까?

태그가 있거나없는 태그를 두 번 배포하려고 시도했습니다.

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> 
+0

는 이것을 webworks 응용 프로그램입니다, 당신은 또한 webworks 태그 – jeffheifetz

답변

1

내가 가진 비슷한 문제 및 "저자"문제가 아니 었습니다 : 디버그 모드로 배포하려고했는데 디버그 모드가 장치에 설치되지 않았습니다.

디버그 토큰은 장치에 설치되어 있어야합니다. 디버그 토큰을 업로드 할 수 있습니다 :

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

희망이 도움이 :)

텍스트 편집기 파일 blackberry-tablet.xml 열기
3

는 "나는 비슷한 문제를 가지고 있었다. blackbery 태블릿에 그 확인 .xml 및 필드가 올바른지 확인하십시오. 해당 필드는 단지 다음 unarchieve, .zip으로 당신의 포장 된 .bar 인 파일의 이름을 변경하기위한

오른쪽 값을 얻으려면. META-INF 폴더에 manifest.mf 파일이 있습니다. 메모장으로여십시오. 그곳에서 값을 가져 와서 앱을 다시 빌드하십시오. 그래도 문제가 해결되지 않으면 디버그 토큰을 다시 작성하고 장치에 설치했는지 확인하십시오. 디버그 토큰에 올바른 장치 핀이 있어야합니다. 이 댓글은 당신을 도왔다 경우

는 엄지 손가락 아이콘을 클릭하세요! 문제가 해결되면 해상도에 솔루션 버튼을 클릭 해주세요! "-source http://supportforums.blackberry.com/t5/Web-and-WebWorks-Development/Failure-881-Application-Author-does-not-match-debug-token-author/m-p/2055935#M32567

+2

.bar 인 파일 그냥 .ZIP 아카이브입니다 있습니다 –

0

저자 태그의 값을 당신이 블랙 베리 서명 키 생성시 제공 한 회사 이름과 일치해야합니다.

0

파일은 <BlackBerry WebWorks SDK Tablet install folder>\bbwp\AirAppTemplates\src\ 안에 있습니다.

당신이 좋아하는 무언가가있는 부분을 볼 수

: 당신이

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

당신은 당신의 저자 및 디버그에서 저자의 아이디 정보를 얻을해야합니다 추가하려면이 섹션 후

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

플레이 북에 업로드 한 토큰입니다. 컴퓨터에 디버그 토큰이 있어야하며 .bar를 .zip으로 바꾸고 추출하십시오. 텍스트 편집기를 사용하여 MANIFEST.MF 파일의 META-INF 폴더에서 Package-Author:Package-Author-Id:에 대한 값을 실제 문자열 값으로 표시하십시오.

희망이 도움이됩니다.

관련 문제