Skip to content

Commit

Permalink
5.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Drawner committed Dec 4, 2024
1 parent 688fc15 commit 4d03c8d
Show file tree
Hide file tree
Showing 9 changed files with 172 additions and 148 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@

## 5.4.1
December 04, 2024
- Optional type argument, T, was not specified.
.pushNamed<T>(routeName, arguments: arguments);
.restorablePushNamed<T>(routeName, arguments: arguments);

## 5.4.0+1
October 14, 2024
- AppState class now has the notifyClientsInBuild parameter. Defaults to true.
Expand All @@ -15,8 +21,8 @@ October 07, 2024

## 5.3.2+1
October 06, 2024
- Removed 'default' Error Handler mistakenly left in Production.
- Removed 'default' Error Widget Builder mistakenly left in Production.
- *FIX* Removed 'default' Error Handler mistakenly left in Production.
- *FIX* Removed 'default' Error Widget Builder mistakenly left in Production.
- A default Error Screen, defaultErrorWidgetBuilder, available during development
- Getters, errorHandler, oldOnError and oldBuilder, offered now in error_handler.dart
- Null error correction in example app
Expand Down
8 changes: 6 additions & 2 deletions example/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,12 @@ android {
ndkVersion = "27.0.12077973"

compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}

kotlinOptions {
jvmTarget = JavaVersion.VERSION_17
}

defaultConfig {
Expand Down
3 changes: 2 additions & 1 deletion example/android/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
#distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.3-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-all.zip
#distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip
4 changes: 2 additions & 2 deletions example/android/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ pluginManagement {
plugins {
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
// id "com.android.application" version "7.3.0" apply false
id "com.android.application" version "8.7.0" apply false
id "org.jetbrains.kotlin.android" version "1.9.0" apply false
id "com.android.application" version "8.7.3" apply false
id "org.jetbrains.kotlin.android" version "1.9.23" apply false
}

include ":app"
Loading

0 comments on commit 4d03c8d

Please sign in to comment.