Alterações visuais, melhorias em envio de mensagem

This commit is contained in:
2026-03-14 16:42:33 +00:00
parent 16da3cc164
commit 7ca6cc23ca
6 changed files with 187 additions and 369 deletions

View File

@@ -1,12 +1,9 @@
pluginManagement {
val flutterSdkPath =
run {
val properties = java.util.Properties()
file("local.properties").inputStream().use { properties.load(it) }
val flutterSdkPath = properties.getProperty("flutter.sdk")
require(flutterSdkPath != null) { "flutter.sdk not set in local.properties" }
flutterSdkPath
}
val flutterSdkPath = run {
val properties = java.util.Properties()
file("local.properties").inputStream().use { properties.load(it) }
properties.getProperty("flutter.sdk") ?: throw GradleException("Flutter SDK not found in local.properties")
}
includeBuild("$flutterSdkPath/packages/flutter_tools/gradle")
@@ -17,10 +14,11 @@ pluginManagement {
}
}
// No ficheiro android/settings.gradle
plugins {
id("dev.flutter.flutter-plugin-loader") version "1.0.0"
id("com.android.application") version "8.11.1" apply false
id("org.jetbrains.kotlin.android") version "2.2.20" apply false
id("com.android.application") version "8.3.0" apply false
id("org.jetbrains.kotlin.android") version "2.1.0" apply false
}
include(":app")