31 lines
780 B
Plaintext
31 lines
780 B
Plaintext
rootProject.name = "maps-kt"
|
|
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
google()
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
|
}
|
|
|
|
plugins {
|
|
kotlin("multiplatform").version(extra["kotlin.version"] as String)
|
|
kotlin("android").version(extra["kotlin.version"] as String)
|
|
id("com.android.application").version(extra["agp.version"] as String)
|
|
id("com.android.library").version(extra["agp.version"] as String)
|
|
id("org.jetbrains.compose").version(extra["compose.version"] as String)
|
|
}
|
|
}
|
|
|
|
|
|
include(
|
|
":maps-kt-core",
|
|
":maps-kt-compose",
|
|
":demo:maps",
|
|
":scheme-kt",
|
|
":demo:scheme"
|
|
)
|
|
|