This question already has answers here:
Gradle Implementation vs API configuration
(5个答案)
3年前关闭。
我最近将Android Studio更新到了3.0版。现在在
但是
(5个答案)
3年前关闭。
我最近将Android Studio更新到了3.0版。现在在
build.gradle
中,所有相关性都使用implementation
关键字而不是旧的compile
关键字添加。dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:25.4.0'
}
但是
compile
关键字仍然有效。 compile
和Implementation
有什么区别? 最佳答案
compile
已被弃用,因此对于图书馆使用 api
或 implementation
implementation
api
从了解更多信息new dependency configurations
10-08 17:26