blob: df625ce2ee6e97ff44c2bf9913a84ec85d494ebe [file]
pluginManagement {
val kotlinVersion: String by settings
val kspVersion: String by settings
val testRepo: String by settings
val agpVersion: String by settings
plugins {
id("com.google.devtools.ksp") version kspVersion apply false
kotlin("android") version kotlinVersion apply false
id("com.android.library") version agpVersion apply false
}
repositories {
maven(testRepo)
google()
gradlePluginPortal()
maven("https://redirector.kotlinlang.org/maven/bootstrap/")
mavenCentral()
}
}
include(":lib:common:collections")
include(":lib:common:media")