我对android很陌生,也是第一次学习。
在我的android项目中,当我执行 时 gradle build
gradle assembleDebugAndroidTest
我得到应用程序和测试apks
所以我有这两个问题
1)如何将它们安装在特定的连接设备/模拟器上?
2)如何启动在设备上运行的测试?
运行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