Nếu bạn đã sử dụng DSL của Kotlin Gradle, phương án thay thế cho việc sử dụng nó theo cách này:
Đây là cấu trúc dự án của tôi
|-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
Của tôi app/build.gradle.kts
- Sử dụng phương pháp đơn giản với
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"))))
}
- Sử dụng phương pháp tương tự như tìm nạp từ kho lưu trữ cục bộ / từ xa với
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")
}
Điều group
cần thiết, do bắt buộc (không phải tùy chọn / có giá trị mặc định) trong kotlin implementation
, xem bên dưới:
// 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
)
Tuyên bố miễn trừ trách nhiệm: Sự khác biệt khi sử dụng flatDirs
phương pháp số 1 & số 2, tôi vẫn không biết nhiều, bạn có thể muốn chỉnh sửa / nhận xét cho câu trả lời này.
Người giới thiệu:
- https://stackoverflow.com/a/56828958/3763032
- https://github.com/gradle/gradle/issues/9272