Files
AutoJs6/libs/android-spackle-9.0.0/build.gradle.kts

9 lines
335 B
Kotlin

"android-spackle-9.0.0.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\"")
}
}