revanced-manager/android/settings.gradle

26 lines
761 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
}
settings.ext.flutterSdkPath = flutterSdkPath()
2022-07-30 21:09:59 +02:00
includeBuild("${settings.ext.flutterSdkPath}/packages/flutter_tools/gradle")
2022-07-30 21:09:59 +02:00
2024-02-18 23:31:24 +01:00
repositories {
google()
mavenCentral()
}
}
2022-07-30 21:09:59 +02:00
2024-02-18 23:31:24 +01:00
plugins {
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
id "com.android.application" version "8.5.1" apply false
2024-05-26 01:10:24 +02:00
id "org.jetbrains.kotlin.android" version "2.0.0" apply false
2024-02-18 23:31:24 +01:00
}
2024-02-18 23:31:24 +01:00
include ":app"