Android Studio 中的 Gradle 构建系统允许您将外部二进制文件或其他库模块作为依赖项包含到您的构建中。依赖项可以位于您的计算机上或远程存储库中,并且它们声明的任何传递依赖项也会自动包含在内。此页面介绍如何在您的 Android 项目中使用依赖项,包括有关 Android Gradle 插件 (AGP) 特定的行为和配置的详细信息。有关 Gradle 依赖项的更深入的概念指南,您还应该查看 Gradle 依赖项管理指南,但请记住,您的 Android 项目必须仅使用此页面上定义的 依赖项配置。
添加库或插件依赖项
添加和管理构建依赖项的最佳方法是使用版本目录,这是新项目默认使用的方法。本节介绍了 Android 项目中使用的最常见类型的配置;有关更多选项,请参阅 Gradle 文档。有关使用版本目录的应用示例,请参阅 Now in Android。如果您已在没有版本目录的情况下设置了构建依赖项,并且有一个多模块项目,我们建议您 迁移。
有关添加和管理原生依赖项(不常见)的指南,请参阅 原生依赖项。
在以下示例中,我们将 远程二进制依赖项(Jetpack Macrobenchmark 库)、本地库模块依赖项(myLibrary
)和插件依赖项(Android Gradle 插件)添加到我们的项目中。以下是在项目中添加这些依赖项的一般步骤
在版本目录文件(称为
libs.versions.toml
,位于项目视图中的gradle
目录下或Android视图中的Gradle 脚本下)的[versions]
部分中添加您想要的依赖项版本的别名。[versions] agp = "8.3.0" androidx-macro-benchmark = "1.2.2" my-library = "1.4" [libraries] ... [plugins] ...
别名可以包含连字符或下划线。这些别名会生成可以在构建脚本中引用的嵌套值。引用以目录的名称开头,即
libs.versions.toml
中的libs
部分。当使用单个版本目录时,我们建议保留“libs”的默认值。在
libs.versions.toml
文件的[libraries]
(用于远程二进制文件或本地库模块)或[plugins]
(用于插件)部分中添加依赖项的别名。[versions] ... [libraries] androidx-benchmark-macro = { group = "androidx.benchmark", name = "benchmark-macro-junit4", version.ref = "androidx-macro-benchmark" } my-library = { group = "com.myapplication", name = "mylibrary", version.ref = "my-library" } [plugins] androidApplication = { id = "com.android.application", version.ref = "agp" }
某些库可在已发布的物料清单 (BOM) 中获得,该清单对库族及其版本进行分组。您可以在版本目录和构建文件中包含 BOM,并让它为您管理这些版本。有关详细信息,请参阅 使用物料清单。
将依赖项别名的引用添加到需要该依赖项的模块的构建脚本中。在从构建脚本引用它时,将别名中的下划线和连字符转换为点。我们的模块级构建脚本如下所示
Kotlin
plugins { alias(libs.plugins.androidApplication) } dependencies { implementation(libs.androidx.benchmark.macro) implementation(libs.my.library) }
Groovy
plugins { alias 'libs.plugins.androidApplication' } dependencies { implementation libs.androidx.benchmark.macro implementation libs.my.library }
插件引用在目录名称后包含
plugins
,版本引用在目录名称后包含versions
(版本引用并不常见;有关版本引用的示例,请参阅 具有相同版本号的依赖项)。库引用不包含libraries
限定符,因此您不能在库别名的开头使用versions
或plugins
。
配置依赖项
在 dependencies
块内,您可以使用多种不同的依赖项配置(例如前面显示的 implementation
)来声明库依赖项。每个依赖项配置都为 Gradle 提供了关于如何使用依赖项的不同指令。下表描述了您可以在 Android 项目的依赖项中使用的每种配置。
配置 | 行为 |
---|---|
implementation |
Gradle 将依赖项添加到编译类路径并将依赖项打包到构建输出中。当您的模块配置 implementation 依赖项时,它是在让 Gradle 知道您不希望模块在编译时将依赖项泄漏到其他模块。也就是说,该依赖项不会提供给依赖于当前模块的其他模块。使用此依赖项配置而不是 |
api |
Gradle 将依赖项添加到编译类路径和构建输出中。当模块包含 api 依赖项时,它是在让 Gradle 知道模块希望将该依赖项传递导出到其他模块,以便在运行时和编译时都可供它们使用。谨慎使用此配置,并且仅在需要传递导出到其他上游使用者时使用。如果 |
compileOnly |
Gradle 仅将依赖项添加到编译类路径(即,它不会添加到构建输出中)。当您创建 Android 模块并且在编译期间需要依赖项时,这很有用,但它在运行时是可选的。例如,如果您依赖于仅包含编译时注释的库(通常用于生成代码,但通常不包含在构建输出中),则可以将该库标记为 compileOnly 。
如果您使用此配置,则您的库模块必须包含一个运行时条件来检查依赖项是否可用,然后优雅地更改其行为,以便即使未提供它也能正常工作。这有助于通过不添加不重要的瞬态依赖项来减小最终应用程序的大小。
注意:您不能将 |
runtimeOnly |
Gradle 仅将依赖项添加到构建输出中,以便在运行时使用。也就是说,它不会添加到编译类路径中。这在 Android 上很少使用,但在服务器应用程序中通常用于提供日志记录实现。例如,库可以使用不包含实现的日志记录 API。该库的使用者可以将其添加为 implementation 依赖项,并包含 runtimeOnly 依赖项以供实际的日志记录实现使用。 |
ksp |
这些配置提供在编译代码之前处理代码中的注释和其他符号的库。它们通常验证您的代码或生成其他代码,从而减少您需要编写的代码。 要添加此类依赖项,您必须使用 Android Gradle 插件假设依赖项是注释处理器,如果其 JAR 文件包含以下文件
如果插件检测到编译类路径上的注释处理器,它将生成构建错误。
在决定使用哪种配置时,请考虑以下几点
有关使用注释处理器的更多信息,请参阅 添加注释处理器。 |
lintChecks |
使用此配置包含包含您希望 Gradle 在构建 Android 应用项目时执行的 lint 检查的库。 请注意,包含 |
lintPublish |
在 Android 库项目中使用此配置包含您希望 Gradle 编译到 lint.jar 文件中并在您的 AAR 中打包的 lint 检查。这会导致使用您的 AAR 的项目也应用这些 lint 检查。如果您以前使用 lintChecks 依赖项配置在发布的 AAR 中包含 lint 检查,则需要将这些依赖项迁移到改为使用 lintPublish 配置。Kotlindependencies { // Executes lint checks from the ":checks" project at build time. lintChecks(project(":checks")) // Compiles lint checks from the ":checks-to-publish" into a // lint.jar file and publishes it to your Android library. lintPublish(project(":checks-to-publish")) } Groovydependencies { // Executes lint checks from the ':checks' project at build time. lintChecks project(':checks') // Compiles lint checks from the ':checks-to-publish' into a // lint.jar file and publishes it to your Android library. lintPublish project(':checks-to-publish') } |
为特定构建变体配置依赖项
所有上述配置都将依赖项应用于所有构建变体。如果您希望改为仅为特定 构建变体 源集或 测试源集 声明依赖项,则必须大写配置名称并在其前面加上构建变体或测试源集的名称。
例如,要仅使用 implementation
配置将远程二进制依赖项添加到您的“free”产品风格中,请使用以下方法
Kotlin
dependencies { freeImplementation("com.google.firebase:firebase-ads:21.5.1") }
Groovy
dependencies { freeImplementation 'com.google.firebase:firebase-ads:21.5.1' }
但是,如果您想为结合了产品风格和构建类型的变体添加依赖项,则必须初始化配置名称
Kotlin
// Initializes a placeholder for the freeDebugImplementation dependency configuration. val freeDebugImplementation by configurations.creating dependencies { freeDebugImplementation(project(":free-support")) }
Groovy
configurations { // Initializes a placeholder for the freeDebugImplementation dependency configuration. freeDebugImplementation {} } dependencies { freeDebugImplementation project(":free-support") }
要为您的本地测试和检测测试添加 implementation
依赖项,它看起来像这样
Kotlin
dependencies { // Adds a remote binary dependency only for local tests. testImplementation("junit:junit:4.12") // Adds a remote binary dependency only for the instrumented test APK. androidTestImplementation("androidx.test.espresso:espresso-core:3.6.1") }
Groovy
dependencies { // Adds a remote binary dependency only for local tests. testImplementation 'junit:junit:4.12' // Adds a remote binary dependency only for the instrumented test APK. androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1' }
但是,某些配置在这种情况下没有意义。例如,由于其他模块无法依赖于 androidTest
,因此如果您使用 androidTestApi
配置,则会收到以下警告
WARNING: Configuration 'androidTestApi' is obsolete and has been replaced with 'androidTestImplementation'.
依赖项顺序
列出依赖项的顺序表示每个依赖项的优先级:第一个库的优先级高于第二个,第二个高于第三个,依此类推。当 资源合并 或 清单元素合并 到您的应用中来自库时,此顺序很重要。
例如,如果您的项目声明以下内容
- 依赖于
LIB_A
和LIB_B
(按此顺序) - 并且
LIB_A
依赖于LIB_C
和LIB_D
(按此顺序) - 并且
LIB_B
也依赖于LIB_C
那么,扁平依赖项顺序如下
LIB_A
LIB_D
LIB_B
LIB_C
这确保了 LIB_A
和 LIB_B
都可以覆盖 LIB_C
;并且 LIB_D
的优先级仍然高于 LIB_B
,因为 LIB_A
(依赖于它)的优先级高于 LIB_B
。
有关如何合并来自不同项目源/依赖项的清单的更多信息,请参阅 合并多个清单文件。
Play Console 的依赖项信息
构建应用时,AGP 会包含描述编译到应用中的库依赖项的元数据。上传应用时,Play Console 会检查此元数据以提供有关应用使用的 SDK 和依赖项的已知问题的警报,并在某些情况下提供可操作的反馈以解决这些问题。
数据已压缩,并使用 Google Play 签名密钥加密,存储在发布应用的签名块中。我们建议保留此依赖项文件,以确保安全且积极的用户体验。您可以选择退出,方法是在模块的 build.gradle.kts
文件中包含以下 dependenciesInfo
代码块。
android {
dependenciesInfo {
// Disables dependency metadata when building APKs.
includeInApk = false
// Disables dependency metadata when building Android App Bundles.
includeInBundle = false
}
}
有关我们的政策以及依赖项潜在问题的更多信息,请参阅我们关于 在应用中使用第三方 SDK 的支持页面。
SDK 洞察
当以下问题适用时,Android Studio 会在版本目录文件和 Google Play SDK 索引 中的“项目结构对话框”中显示针对公共 SDK 的 lint 警告
- SDK 的作者将其标记为已过时。
- SDK 违反了 Play 政策。
这些警告表明您应该更新这些依赖项,因为使用过时的版本可能会导致您将来无法发布到 Google Play 控制台。
在没有版本目录的情况下添加构建依赖项
我们建议使用版本目录来添加和管理依赖项,但简单的项目可能不需要它们。以下是不使用版本目录的构建文件的示例
Kotlin
plugins { id("com.android.application") } android { ... } dependencies { // Dependency on a remote binary implementation("com.example.android:app-magic:12.3") // Dependency on a local library module implementation(project(":mylibrary")) }
Groovy
plugins { id 'com.android.application' } android { ... } dependencies { // Dependency on a remote binary implementation 'com.example.android:app-magic:12.3' // Dependency on a local library module implementation project(':mylibrary') }
此构建文件在“com.example.android”命名空间组内声明了对“app-magic”库版本 12.3 的依赖关系。远程二进制依赖项声明是以下内容的简写形式
Kotlin
implementation(group = "com.example.android", name = "app-magic", version = "12.3")
Groovy
implementation group: 'com.example.android', name: 'app-magic', version: '12.3'
构建文件还声明了对名为“mylibrary”的 Android 库模块 的依赖关系;此名称必须与在 settings.gradle.kts
文件中使用 include:
定义的库名称匹配。构建应用时,构建系统会编译库模块并将生成的已编译内容打包到应用中。
构建文件还声明了对 Android Gradle 插件 (com.application.android
) 的依赖关系。如果有多个模块使用相同的插件,则在所有模块的构建类路径中,插件只能有一个版本。与其在每个模块构建脚本中指定版本,不如在根构建脚本中包含带有版本的插件依赖项,并指示不要应用它。添加 apply false
会告诉 Gradle 注意插件的版本,但不要在根构建中使用它。通常,根构建脚本为空,除了此 plugins
代码块。
Kotlin
plugins { id("org.jetbrains.kotlin.android") version "1.9.0" apply false }
Groovy
plugins { id ‘com.android.application’ version ‘8.3.0-rc02’ apply false }
如果有一个单模块项目,可以在模块级构建脚本中显式指定版本,并使项目级构建脚本为空
Kotlin
plugins { id("com.android.application") version "8.3.0" }
Groovy
plugins { id 'com.android.application' version '8.3.0-rc02' }