9 lines
337 B
Kotlin
9 lines
337 B
Kotlin
"expandable-layout-1.6.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\"")
|
|
}
|
|
} |