温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

采用robotium测试无源码apk

发布时间:2020-06-22 08:01:30 来源:网络 阅读:709 作者:guo09 栏目:移动开发

运行测试的过程中首先发生的错误:

[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进行优化,用于数据对齐

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问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI