chore: clean up Flutter 3.44 upgrade aftermath - #334
Merged
Conversation
Replace the flutter_secure_storage 11.0.0-beta.1 prerelease pin with the latest stable (10.3.1), and force flutter_secure_storage_darwin 0.4.0 via dependency_overrides. 0.4.0 raises the SPM Package.swift iOS floor to 13.0 (matching its CryptoKit usage) so the iOS release build compiles; it is a pure deployment-target bump over the 0.3.2 that 10.3.1 would otherwise cap to, with the same platform_interface. This also drops the compileSdk=37 requirement that the 11 beta carried.
The Flutter 3.44 migrator re-adds android.newDsl=false and android.builtInKotlin=false whenever they are missing, dirtying the working tree on every build. Commit them so it stops. Both are AGP 9 opt-outs and inert no-ops under the current AGP 8.
Dokploy Preview Deployment
|
PR Preview BuildsBuild Number: 1131 |
rileychh
enabled auto-merge
June 11, 2026 09:57
bradly0cjw
approved these changes
Jun 11, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Two pieces of leftover drift from the Flutter 3.44 upgrade (#328), independent of the parked AGP 9 work (#27).
7ed7d0b chore: track stable flutter_secure_storage with darwin 0.4.0 override— replace the11.0.0-beta.1prerelease pin with stable10.3.1, and forceflutter_secure_storage_darwin 0.4.0viadependency_overrides. 0.4.0 carries the SPM iOS-13 CryptoKit fix (raises itsPackage.swiftfloor to 13.0) without dragging in a prerelease Dart layer. Verified: Android debug + iOS release build.a949d0b chore(android): commit Flutter migrator gradle.properties flags— the Flutter 3.44 migrator re-addsandroid.newDsl=false/android.builtInKotlin=falseon every build when missing, dirtying the working tree. Committing them stops the drift; inert no-ops under the current AGP 8.No functional/runtime change; both are build/dependency housekeeping.