1
0
mirror of https://github.com/immich-app/immich.git synced 2024-12-03 09:59:32 +02:00
immich/mobile/android/settings.gradle

27 lines
791 B
Groovy
Raw Normal View History

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-02-03 18:06:44 +02:00
includeBuild("$flutterSdkPath/packages/flutter_tools/gradle")
2022-02-03 18:06:44 +02:00
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
2022-02-03 18:06:44 +02:00
plugins {
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
id "com.android.application" version "7.4.2" apply false
id "org.jetbrains.kotlin.android" version "1.9.24" apply false
id "org.jetbrains.kotlin.kapt" version "1.9.24" apply false
}
include ":app"