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

[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 安装