You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
871 B
Groovy
23 lines
871 B
Groovy
pluginManagement {
|
|
def localProperties = new Properties()
|
|
def localPropertiesFile = new File(rootDir, "local.properties")
|
|
if (localPropertiesFile.exists()) {
|
|
localPropertiesFile.withReader("UTF-8") { reader -> localProperties.load(reader) }
|
|
}
|
|
def flutterSdkPath = localProperties.getProperty("flutter.sdk")
|
|
assert flutterSdkPath != null : "flutter.sdk not set in local.properties"
|
|
includeBuild("${flutterSdkPath}/packages/flutter_tools/gradle")
|
|
|
|
repositories { google(); mavenCentral(); gradlePluginPortal() }
|
|
}
|
|
|
|
plugins {
|
|
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
|
|
id "com.android.application" version "8.6.1" apply false
|
|
id "com.android.library" version "8.6.1" apply false
|
|
id "org.jetbrains.kotlin.android" version "1.9.24" apply false
|
|
}
|
|
|
|
include(":app")
|
|
rootProject.name = "workingHoursFlutter"
|