mnemo_cards/android/settings.gradle

43 lines
1.2 KiB
Groovy
Raw Normal View History

2024-05-22 20:48:44 +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
2024-07-18 21:45:04 +00:00
}()
2024-05-22 20:48:44 +00:00
2024-07-18 21:45:04 +00:00
includeBuild("$flutterSdkPath/packages/flutter_tools/gradle")
2024-05-22 20:48:44 +00:00
2024-07-18 21:45:04 +00:00
repositories {
google()
mavenCentral()
gradlePluginPortal()
2024-05-22 20:48:44 +00:00
}
// For yoo kassa
buildscript {
repositories {
mavenCentral()
maven {
url = uri("https://storage.googleapis.com/r8-releases/raw")
}
}
dependencies {
classpath("com.android.tools:r8:8.3.37")
}
}
}
2024-07-18 21:45:04 +00:00
plugins {
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
id "com.android.application" version "7.3.0" apply false
// START: FlutterFire Configuration
id "com.google.gms.google-services" version "4.3.15" apply false
id "com.google.firebase.crashlytics" version "2.8.1" apply false
// END: FlutterFire Configuration
id "org.jetbrains.kotlin.android" version "1.9.10" apply false
}
2024-05-22 20:48:44 +00:00
2024-07-18 21:45:04 +00:00
include ":app"