49 lines
1.8 KiB
Kotlin
49 lines
1.8 KiB
Kotlin
import com.android.build.api.variant.LibraryAndroidComponentsExtension
|
|
import com.android.build.gradle.LibraryExtension
|
|
import com.looker.droidify.configureKotlinAndroid
|
|
import com.looker.droidify.kotlin2
|
|
import com.looker.droidify.libs
|
|
import org.gradle.api.Plugin
|
|
import org.gradle.api.Project
|
|
import org.gradle.kotlin.dsl.configure
|
|
import org.gradle.kotlin.dsl.dependencies
|
|
|
|
class AndroidLibraryPlugin : Plugin<Project> {
|
|
override fun apply(target: Project) {
|
|
with(target) {
|
|
with(pluginManager) {
|
|
apply("com.android.library")
|
|
apply("org.jetbrains.kotlin.android")
|
|
}
|
|
|
|
extensions.configure<LibraryExtension> {
|
|
configureKotlinAndroid(this)
|
|
defaultConfig.targetSdk = DefaultConfig.compileSdk
|
|
buildTypes {
|
|
release {
|
|
isMinifyEnabled = true
|
|
proguardFiles(
|
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
|
"${rootDir.path}/app/proguard.pro"
|
|
)
|
|
}
|
|
create("alpha") {
|
|
initWith(getByName("debug"))
|
|
isMinifyEnabled = false
|
|
}
|
|
}
|
|
}
|
|
extensions.configure<LibraryAndroidComponentsExtension> {
|
|
beforeVariants {
|
|
it.enableAndroidTest = it.enableAndroidTest
|
|
&& project.projectDir.resolve("src/androidTest").exists()
|
|
}
|
|
}
|
|
dependencies {
|
|
add("implementation", kotlin2("stdlib", libs))
|
|
add("implementation", kotlin2("reflect", libs))
|
|
}
|
|
}
|
|
}
|
|
}
|