mobile_nebula/android/settings.gradle

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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