在
http://tools.android.com/tech-docs/new-build-system/user-guide,定义了以下任务:
- assemble The task to assemble the output(s) of the project
- check The
task to run all the checks.- connectedCheck Runs checks that requires a
connected device or emulator. they will run on all connected devices
in parallel.- deviceCheck Runs checks using APIs to connect to remote
devices. This is used on CI servers.- build This task does both
assemble and check- clean This task cleans the output of the project
我正在设置一个Jenkins CI来运行我的(Espresso)测试,并且deviceCheck任务描述似乎与之相关.但是,我找不到任何关于如何在CI服务器上使用此任务执行远程设备上的测试的文档或示例.有谁知道如何使用它?