解决了被防火墙等注入Cookies时丢cookies的问题 - #5
Open
taskmemz wants to merge 16 commits into
Open
Conversation
… stable min supported Gradle Android build failed: 'Your project's Gradle version (8.12.0) is lower than Flutter's minimum supported version of 8.14.0.' Bumping the wrapper distribution to 8.14.0 keeps AGP 8.9.1 compatibility and restores Android CI green. Falls under KNOWN_MODS MoonTechLab#5 (CI/dependency fixes).
…dle/gradle release asset The Gradle wrapper's fallback mirror (github.com/gradle/gradle-distributions) only hosts Gradle <= 8.13, causing a 404 for 8.14.0. The primary services.gradle.org host redirects newer distributions to a CDN unreachable from the CI runner, triggering that dead fallback. Switch distributionUrl to the official GitHub release asset (https://github.com/gradle/gradle/releases/download/v8.14.0/gradle-8.14.0-all.zip) which the GitHub-hosted runner can fetch directly and which hosts 8.14.0, satisfying Flutter 3.47.1's minimum Gradle 8.14.0 requirement without the broken mirror path. KNOWN_MODS MoonTechLab#5 (CI/dependency fixes).
The Gradle wrapper's built-in mirror rewrite mishandles the '.0' patch suffix, turning gradle-8.14-all.zip into the nonexistent gradle-8.14.0-all.zip and 404'ing on the github.com/gradle/gradle-distributions mirror (which only hosts up to 8.13 via the auto-rewrite, and errors on the malformed 8.14.0 name). Set distributionUrl directly to the verified asset: https://github.com/gradle/gradle-distributions/releases/download/v8.14.0/gradle-8.14-all.zip (host is github.com so the wrapper does not apply its broken rewrite; reachable from the CI runner). Satisfies Flutter 3.47.1's minimum Gradle 8.14.0 requirement. KNOWN_MODS MoonTechLab#5 (CI/dependency fixes).
…1 min requirement Android build failed: 'Your project's Android Gradle Plugin version (8.9.1) is lower than Flutter's minimum supported version of 8.11.1. Please upgrade your Android Gradle Plugin version.' Latest Flutter stable (3.47.1) now requires AGP >= 8.11.1. Bumping the plugin version in settings.gradle.kts; Kotlin 2.1.0 stays compatible. KNOWN_MODS MoonTechLab#5 (CI/dependency fixes).
… min requirement Android build failed: 'Your project's Kotlin version (2.1.0) is lower than Flutter's minimum supported version of 2.2.20. Please upgrade your Kotlin version.' Flutter 3.47.1 enforces Kotlin >= 2.2.20. Bumping KGP in settings.gradle.kts (no hardcoded kotlin_version override elsewhere in android/). Gradle 8.14.0 + AGP 8.11.1 already satisfied. KNOWN_MODS MoonTechLab#5 (CI/dependency fixes).
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.
No description provided.