mirror of
https://github.com/BetterAndroid/android-app-template.git
synced 2025-09-01 08:15:34 +08:00
16 lines
401 B
Plaintext
16 lines
401 B
Plaintext
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(":app") |