宣告配置的依賴項
可以為 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'