我是初学者并且是第一次学习它。
在我的android项目中,当我做
时 gradle build
gradle assembleDebugAndroidTest
我得到了应用程序和测试apks
所以我有这两个问题
1)如何在特定的连接设备/仿真器上安装它们?
2)如何开始在设备上运行测试?
非常感谢。
答案 0 :(得分:1)
运行adb devices
查看已连接的设备:
List of devices attached
emulator-5554 device
emulator-5556 device
然后,使用ANDROID_SERIAL
指定您想要的那个。
安装:
ANDROID_SERIAL=emulator-5554 gradle installDebug
运行测试:
ANDROID_SERIAL=emulator-5554 gradle connectedAndroidTestDebug