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
No.2 접근 방식을 사용하는 차이점 , 나는 여전히 모르고 있습니다.이 답변에 대한 편집 / 의견을 원할 수 있습니다.
참고 문헌 :
- https://stackoverflow.com/a/56828958/3763032
- https://github.com/gradle/gradle/issues/9272