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
は、kotlinの必須(オプションではない/デフォルト値があるため)のために必要でした。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
no.2のアプローチ、私はまだあまり知りません、あなたはこの答えを編集/コメントしたいと思うかもしれません。
参照:
- https://stackoverflow.com/a/56828958/3763032
- https://github.com/gradle/gradle/issues/9272