Files
AutoJs6/libs/com-tencent-bugly-crashreport-4_0_4/build.gradle.kts

9 lines
331 B
Kotlin

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