Files
AutoJs6/libs/root-shell-1_6/build.gradle.kts

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\"")
}
}