12 lines
437 B
Kotlin
12 lines
437 B
Kotlin
// @Modified
|
|
// ! Current library (Android Job) was simplified by SuperMonster003 on Jun 30, 2022.
|
|
|
|
"android-job-simplified.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\"")
|
|
}
|
|
} |