在Gradle中实现和编译有什么区别?
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'