溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

采用robotium測試無源碼apk

發(fā)布時間:2020-06-22 08:01:30 來源:網(wǎng)絡(luò) 閱讀:730 作者:guo09 欄目:移動開發(fā)

運行測試的過程中首先發(fā)生的錯誤:

[2015-03-02 11:18:22 - AAA] Test run failed: PermissionDenial: starting instrumentationComponentInfo{com.example.changeactive.test/android.test.InstrumentationTestRunner}from pid=6739, uid=6739 not allowed because package com.example.changeactive.testdoes not have a signature matching the target com.dongao.mainclient.phone

解決方式:

1、     先將apk中的META-INFO包去掉

2、     通過jarsigner重新簽名

jarsigner -keystoreC:\Users\Administrator\.android\debug.keystore -storepass android -keypassandroid e:\my.apk androiddebugkey

3、使用zipalign進行優(yōu)化,用于數(shù)據(jù)對齊

D:\android-sdkr24\build-tools\21.1.2\zipalign 4e:\my.apk e:\Tempmy.apk


mv Tempmy.apk my.apk

Jarsinger工具位置:C:\jdk17\bin

Zipalign工具位置:D:\android-sdkr24\build-tools\21.1.2


最后通過>adb install my.apk 安裝


向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI