2024-09-20 18:19:23 +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
|
|
|
|
}()
|
2020-07-27 20:43:58 +00:00
|
|
|
|
2024-09-20 18:19:23 +00:00
|
|
|
includeBuild("$flutterSdkPath/packages/flutter_tools/gradle")
|
2020-07-27 20:43:58 +00:00
|
|
|
|
2024-09-20 18:19:23 +00:00
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
gradlePluginPortal()
|
|
|
|
}
|
|
|
|
}
|
2020-07-27 20:43:58 +00:00
|
|
|
|
2024-09-20 18:19:23 +00:00
|
|
|
plugins {
|
|
|
|
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
|
2024-09-26 20:27:10 +00:00
|
|
|
id "com.android.application" version '8.6.1' apply false
|
|
|
|
id "org.jetbrains.kotlin.android" version "2.0.20" apply false
|
2024-09-20 18:19:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
include ':app', ':mobileNebula'
|