settings.gradle.kts 909 B

12345678910111213141516171819202122232425262728
  1. pluginManagement {
  2. val flutterSdkPath =
  3. run {
  4. val properties = java.util.Properties()
  5. file("local.properties").inputStream().use { properties.load(it) }
  6. val flutterSdkPath = properties.getProperty("flutter.sdk")
  7. require(flutterSdkPath != null) { "flutter.sdk not set in local.properties" }
  8. flutterSdkPath
  9. }
  10. includeBuild("$flutterSdkPath/packages/flutter_tools/gradle")
  11. repositories {
  12. google()
  13. mavenCentral()
  14. gradlePluginPortal()
  15. }
  16. }
  17. plugins {
  18. id("dev.flutter.flutter-plugin-loader") version "1.0.0"
  19. id("com.android.application") version "8.9.1" apply false
  20. id("org.jetbrains.kotlin.android") version "2.1.0" apply false
  21. id("com.google.gms.google-services") version "4.4.2" apply false
  22. id("com.google.firebase.crashlytics") version "3.0.2" apply false
  23. }
  24. include(":app")