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,3 +1,15 @@
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
// Versões estáveis e compatíveis com Flutter 3.x
classpath("com.android.tools.build:gradle:7.4.2")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.22")
}
}
allprojects {
repositories {
google()

View File

@@ -1,6 +1,6 @@
#Fri Mar 13 16:43:00 WET 2026
#Sat Mar 14 16:08:23 WET 2026
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.1-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

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")