feat:plugin编译为aar包引用

This commit is contained in:
2025-09-22 11:12:45 +08:00
parent 0509096925
commit e04110c6d5
8 changed files with 36 additions and 4 deletions

View File

@@ -50,3 +50,11 @@ android {
flutter {
source = "../.."
}
dependencies {
// Process .aar files in the libs folder.
val aarFiles = fileTree(mapOf("dir" to "$rootDir/libs", "include" to listOf("*.aar")))
aarFiles.forEach { aar ->
implementation(files(aar))
}
}