Якщо ви вже використовуєте Kotlin Gradle DSL, альтернатива використовувати його таким чином:
Ось моя структура проекту
|-root
|----- app
|--------- libs // I choose to store the aar here
|-------------- my-libs-01.aar
|-------------- my-libs-02.jar
|--------- build.gradle.kts // app module gradle
|----- common-libs // another aar folder/directory
|----------------- common-libs-01.aar
|----------------- common-libs-02.jar
|----- build.gradle.kts // root gradle
Моя app/build.gradle.kts
- Використовуючи простий підхід з
fileTree
// android related config above omitted...
dependencies {
// you can do this to include everything in the both directory
// Inside ./root/common-libs & ./root/app/libs
implementation(fileTree(mapOf("dir" to "libs", "include" to listOf("*.jar", "*.aar"))))
implementation(fileTree(mapOf("dir" to "../common-libs", "include" to listOf("*.jar", "*.aar"))))
}
- Використовуючи такий самий підхід, як отримання з місцевого / віддаленого сховища Maven з
flatDirs
// android related config above omitted...
repositories {
flatDir {
dirs = mutableSetOf(File("libs"), File("../common-libs")
}
}
dependencies {
implementation(group = "", name = "my-libs-01", ext = "aar")
implementation(group = "", name = "my-libs-02", ext = "jar")
implementation(group = "", name = "common-libs-01", ext = "aar")
implementation(group = "", name = "common-libs-02", ext = "jar")
}
group
Було необхідно, в зв'язку з його обов'язковою (НЕ опціональним / має по замовчуванням значення) в Котлин implementation
, дивіться нижче:
// Filename: ReleaseImplementationConfigurationAccessors.kt
package org.gradle.kotlin.dsl
fun DependencyHandler.`releaseImplementation`(
group: String,
name: String,
version: String? = null,
configuration: String? = null,
classifier: String? = null,
ext: String? = null,
dependencyConfiguration: Action<ExternalModuleDependency>? = null
)
Відмова від відповідальності: різниця у використанні no.1 & flatDirs
підходу 2, я все ще не знаю багато, ви можете відредагувати / прокоментувати цю відповідь.
Список літератури:
- https://stackoverflow.com/a/56828958/3763032
- https://github.com/gradle/gradle/isissue/9272