- classpath:一般是添加 buildscript 本身需要運行的東西迎卤,buildScript是用來加載gradle腳本自身需要使用的資源墩弯,可以聲明的資源包括依賴項它匕、第三方插件展融、maven倉庫地址等。
某種意義上來說豫柬,classpath 聲明的依賴告希,不會編譯到最終的 apk 里面。
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
//butterknife注入
classpath 'com.jakewharton:butterknife-gradle-plugin:8.2.1'
}
}
- implementation烧给、api :在模塊中的build.gradle中燕偶,給 dependencies 中添加的使應用程序所需要的依賴包,也就是項目運行所需要的東西础嫡。
- implementation:對于使用了該命令編譯的依賴指么,對該項目有依賴的項目將無法訪問到使用該命令編譯的依賴中的任何程序,也就是將該依賴隱藏在內部榴鼎,而不對外部公開伯诬。
- api:對比 implementation,不會隱藏檬贰。(等同于 Android Gradle 2.x 版本的 compile(已deprecated))
如果 lib C 依賴了lib A 2.0版本姑廉,lib B implementation依賴了lib A 1.0版本:
那么編譯期,libC 可訪問2.0版本的libA 翁涤,libB可訪問1.0版本的libA桥言。但最終打到apk中的是2.0版本(通過依賴樹可看到)萌踱。
在運行期,lib B 和lib C都可訪問lib A的2.0版本(因為apk的所有dex都會放到classLoader的dexPathList中)号阿。
android {...}
...
dependencies {
// The 'compile' configuration tells Gradle to add the dependency to the
// compilation classpath and include it in the final package.
// Dependency on the "mylibrary" module from this project
api project(":mylibrary")
// Remote binary dependency
implementation 'com.android.support:appcompat-v7:27.1.1'
// Local binary dependency
api fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.jakewharton:butterknife:8.2.1'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.2.1'
}
更多信息參考:
https://developer.android.com/studio/build/
https://developer.android.com/studio/build/build-variants#dependencies
https://docs.gradle.org/current/userguide/dependency_management_for_java_projects.html
https://docs.gradle.org/current/userguide/introduction_dependency_management.html