mirror of
https://github.com/BetterAndroid/compose-multiplatform-template.git
synced 2025-09-05 10:15:24 +08:00
17 lines
485 B
Plaintext
17 lines
485 B
Plaintext
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
plugins {
|
|
id("com.highcapable.sweetdependency") version "__SWEET_DEPENDENCY_VERSION__"
|
|
id("com.highcapable.sweetproperty") version "__SWEET_PROPERTY_VERSION__"
|
|
}
|
|
sweetProperty {
|
|
rootProject { all { isEnable = false } }
|
|
}
|
|
rootProject.name = "__PROJECT_NAME__"
|
|
include(":androidApp", ":desktopApp", ":shared") |