17 lines
328 B
Kotlin
17 lines
328 B
Kotlin
pluginManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id("com.android.application") version "8.11.0" apply false
|
|
id("org.jetbrains.kotlin.android") version "1.9.25" apply false
|
|
}
|
|
|
|
rootProject.name = "agp-resolver"
|
|
include(":app")
|
|
include(":tools")
|