采用robotium测试无源码apk
运行测试的过程中首先发生的错误:
[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.apkandroiddebugkey
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 安装
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。