Files
AutoJs6/libs/android-assertion-9_0_0/build.gradle.kts

9 lines
337 B
Kotlin

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