Files
fcs/android/settings.gradle

29 lines
874 B
Groovy
Raw Normal View History

2024-12-27 22:36:48 +06:30
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
}()
2020-05-28 21:50:32 +06:30
2024-12-27 22:36:48 +06:30
includeBuild("$flutterSdkPath/packages/flutter_tools/gradle")
2020-05-28 21:50:32 +06:30
2024-12-27 22:36:48 +06:30
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
2020-05-28 21:50:32 +06:30
2024-12-27 22:36:48 +06:30
plugins {
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
2025-02-11 22:11:45 +06:30
id "com.android.application" version "8.1.0" apply false
2024-12-27 22:36:48 +06:30
// START: FlutterFire Configuration
id "com.google.gms.google-services" version "4.3.15" apply false
// END: FlutterFire Configuration
2025-02-11 22:11:45 +06:30
id "org.jetbrains.kotlin.android" version "1.8.22" apply false
2024-12-27 22:36:48 +06:30
}
include ":app"