16 lines
300 B
Kotlin
16 lines
300 B
Kotlin
plugins {
|
|
`kotlin-dsl`
|
|
}
|
|
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation(libs.plugin.android)
|
|
implementation(libs.plugin.kotlin)
|
|
implementation("com.squareup:javapoet:1.13.0") // https://github.com/google/dagger/issues/3068
|
|
}
|