INNER CODE UNIT · Kotlin
apply
skydoves/chatgpt-android · build-logic/convention/src/main/kotlin/AndroidApplicationConventionPlugin.kt:8
override fun apply(target: Project) {
with(target) {
with(pluginManager) {
apply("com.android.application")
apply("org.jetbrains.kotlin.android")
}
extensions.configure<BaseAppModuleExtension> {
configureKotlinAndroid(this)
}
}
}
}