All checks were successful
Create Release / build (push) Successful in 4s
- AGP 8.1.0 -> 8.7.0 (Flutter 3.41 minimum) - Kotlin 1.8.22 -> 2.1.0 - minSdkVersion 24 -> 26 (twilio_voice requirement) - Enable coreLibraryDesugaring for flutter_local_notifications - Add placeholder google-services.json for build Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
27 lines
794 B
Groovy
27 lines
794 B
Groovy
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
|
|
}()
|
|
|
|
includeBuild("$flutterSdkPath/packages/flutter_tools/gradle")
|
|
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
|
|
id "com.android.application" version "8.7.0" apply false
|
|
id "org.jetbrains.kotlin.android" version "2.1.0" apply false
|
|
id "com.google.gms.google-services" version "4.4.0" apply false
|
|
}
|
|
|
|
include ":app"
|