在Gradle中实现和编译有什么区别?在更新到AndroidStudio3.0并创建一个新项目后,我注意到build.gradle有一种新的方法可以添加新的依赖项,而不是compile的确有implementation而不是testCompile的确有testImplementation.例子: implementation 'com.android.support:appcompat-v7:25.0.0'
testImplementation 'junit:junit:4.12'而不是 compile 'com.android.support:appcompat-v7:25.0.0'
testCompile 'junit:junit:4.12'它们之间有什么区别,我应该使用什么?
添加回答
举报
0/150
提交
取消