声明配置的依赖项
可以为 test / androidTest 等特定配置添加依赖项
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.1'
testCompile 'junit:junit:3.8.1'
或者创建你自己的配置
configurations {
myconfig
}
然后下载此配置的依赖项
myconfig group: 'com.mycompany', name: 'my_artifact', version: '1.0.0'