Skip to content

Commit 1d6b298

Browse files
committed
update
1 parent 116a58c commit 1d6b298

File tree

9 files changed

+104
-103
lines changed

9 files changed

+104
-103
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
Changelog Tarefas
22

3+
## [3.0.6](https://github.com/hendrilmendes/Tarefas/compare/3.0.2..3.0.6) (12-12-2025)
4+
5+
### Correções
6+
7+
- Atualizado dependencias
8+
39
======================================================
410

511
## [3.0.4](https://github.com/hendrilmendes/Tarefas/compare/3.0.1..3.0.2) (10-10-2025)

android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ if (keystorePropertiesFile.exists()) {
3333
android {
3434
namespace "com.github.hendrilmendes.tarefas"
3535
compileSdk 36
36-
ndkVersion = "27.0.12077973"
36+
ndkVersion = "29.0.14033849"
3737

3838
compileOptions {
3939
coreLibraryDesugaringEnabled true

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ subprojects {
1010
project.buildDir = "${rootProject.buildDir}/${project.name}"
1111
afterEvaluate {
1212
android {
13-
compileSdkVersion 35
13+
compileSdkVersion 36
1414
}
1515
}
1616
}

android/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
org.gradle.jvmargs=-Xmx4608m
1+
org.gradle.jvmargs=-Xmx1536M
22
android.useAndroidX=true
33
android.enableJetifier=true
44
android.defaults.buildfeatures.buildconfig=true
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Thu Dec 28 12:20:55 AMT 2023
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-all.zip
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

android/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ pluginManagement {
1919

2020
plugins {
2121
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
22-
id "com.android.application" version "8.7.0" apply false
22+
id "com.android.application" version "8.9.1" apply false
2323
id "org.jetbrains.kotlin.android" version "2.1.0" apply false
2424
id "com.google.gms.google-services" version "4.4.0" apply false
2525
id "com.google.firebase.firebase-perf" version "1.4.1" apply false

lib/main.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import 'package:firebase_core/firebase_core.dart';
77
import 'package:firebase_crashlytics/firebase_crashlytics.dart';
88
import 'package:flutter/foundation.dart';
99
import 'package:flutter/material.dart';
10+
import 'package:flutter/services.dart';
1011
import 'package:flutter_local_notifications/flutter_local_notifications.dart';
1112
import 'package:tarefas/l10n/app_localizations.dart';
1213
import 'package:google_fonts/google_fonts.dart';
@@ -24,6 +25,8 @@ import 'package:wiredash/wiredash.dart';
2425
void main() async {
2526
WidgetsFlutterBinding.ensureInitialized();
2627

28+
SystemChrome.setEnabledSystemUIMode(SystemUiMode.edgeToEdge);
29+
2730
final themeModel = ThemeModel();
2831
await themeModel.initialize();
2932

0 commit comments

Comments
 (0)