即使删除了应用程序,我尝试时也会显示检测测试:
adb shell pm list instrumentation
我甚至尝试重新启动手机。
如何手动删除检测测试?
答案 0 :(得分:1)
您可以从Gradle中卸载应用程序和仪器测试:
./gradlew uninstallAll
答案 1 :(得分:0)
我和selendroid有类似的问题。
我在UI上卸载了selendroid apk,但是下面的命令仍然向我展示了仪表:adb shell pm list instrumentation
:
instrumentation:ch.post.it.nemo.marlin.selendroid/io.selendroid.server.ServerInstrumentation (target=org.test.testapp)
instrumentation:ch.post.it.nemo.marlin.selendroid/io.selendroid.server.LightweightInstrumentation (target=org.test.testapp)
然后我检查了shell adb shell pm list packages | grep selendroid
上的包管理器:
package:ch.post.it.nemo.marlin.selendroid
在shell上卸载selendroid包后:adb shell pm uninstall ch.post.it.nemo.marlin.selendroid
仪器也消失了。
答案 2 :(得分:0)
pm卸载仪表应用程序的软件包名称。