mirror of
https://github.com/BetterAndroid/compose-multiplatform-template.git
synced 2025-09-03 17:25:31 +08:00
20 lines
557 B
Plaintext
20 lines
557 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__"
|
|
}
|
|
sweetDependency {
|
|
isUseDependencyResolutionManagement = false
|
|
}
|
|
sweetProperty {
|
|
rootProject { all { isEnable = false } }
|
|
}
|
|
rootProject.name = "__PROJECT_NAME__"
|
|
include(":androidApp", ":desktopApp", ":composeApp") |