Files
authsec_flutter/android/settings.gradle
T

30 lines
820 B
Groovy
Raw Normal View History

2026-09-15 09:09:11 +05: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
}
settings.ext.flutterSdkPath = flutterSdkPath()
includeBuild("${settings.ext.flutterSdkPath}/packages/flutter_tools/gradle")
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
plugins {
id "dev.flutter.flutter-gradle-plugin" version "1.0.0" apply false
}
}
plugins {
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
2026-09-15 14:45:30 +00:00
id "com.android.application" version "8.6.0" apply false
2026-09-15 09:09:11 +05:30
}
include ":app"