m3_lightmeter/android/settings.gradle

27 lines
863 B
Groovy
Raw Normal View History

2025-01-14 11:52:38 +00:00
pluginManagement {
def flutterSdkPath = {
def properties = new Properties()
file("local.properties").withInputStream { properties.load(it) }
def flutterSdkPath = properties.getProperty("flutter.sdk")
assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
return flutterSdkPath
}()
2022-10-15 16:35:35 +00:00
2025-01-14 11:52:38 +00:00
includeBuild("$flutterSdkPath/packages/flutter_tools/gradle")
2022-10-15 16:35:35 +00:00
2025-01-14 11:52:38 +00:00
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
2022-10-15 16:35:35 +00:00
2025-01-14 11:52:38 +00:00
plugins {
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
2025-01-16 11:25:27 +00:00
id "com.android.application" version '8.7.3' apply false
2025-01-14 11:52:38 +00:00
id "org.jetbrains.kotlin.android" version "1.8.21" apply false
id "com.google.gms.google-services" version "4.4.0" apply false
id "com.google.firebase.crashlytics" version "2.9.9" apply false
}
include ":app"