Files
AutoJs6/libs/root-shell-1.6/build.gradle.kts
SuperMonster003 fa4790c521
Some checks failed
Android CI / build (push) Has been cancelled
6.6.4 - Fix - 修复 RootShell 依赖项无法获取的问题
2025-07-28 19:47:10 +08:00

9 lines
328 B
Kotlin

"root-shell-1.6.aar"
.let { path ->
rootProject.extra["configurationName"].toString().let { name ->
configurations.maybeCreate(name)
file(path).takeIf { it.exists() }?.also {
artifacts.add(name, it)
} ?: throw Exception("File not found: \"$path\"")
}
}