Android Gradle dependencies 方式:classpath、implementation、api 的区别

  1. 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'
    }
}
  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

    原文作者:十二书
    原文地址: https://www.jianshu.com/p/af1c23b1eedc
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞