medito-app/android/settings.gradle

28 lines
873 B
Groovy
Raw Permalink Normal View History

2024-09-09 11:08:20 +03: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
}()
2019-11-18 21:22:26 +03:00
2024-09-09 11:08:20 +03:00
includeBuild("$flutterSdkPath/packages/flutter_tools/gradle")
2019-11-18 21:22:26 +03:00
2024-09-09 11:08:20 +03:00
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
2019-11-18 21:22:26 +03:00
2024-09-09 11:08:20 +03:00
plugins {
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
2024-10-01 13:02:21 +03:00
id "com.android.application" version "8.3.1" apply false
2024-09-11 12:54:52 +03:00
// START: FlutterFire Configuration
id "com.google.gms.google-services" version "4.3.15" apply false
// END: FlutterFire Configuration
2024-09-09 11:08:20 +03:00
id "org.jetbrains.kotlin.android" version "1.9.22" apply false
}
include ":app"