Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .ci/legacy_project/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ and then deleting everything but `android/` from it:
`build.gradle` to maintain compatibility with plugins that use
Flutter's most recently supported API version.
- Modifies `gradle-wrapper.properties` to upgrade the Gradle version
from 8.4 to 8.7. If a user runs into an error with the Gradle
from 8.4 to 8.11.1. If a user runs into an error with the Gradle
version, the warning is clear on how to upgrade the version to
one that we support.
- Modifies `settings.gradle` to upgrade the Android Gradle Plugin (AGP)
from version 8.3.0 (originally set in `build.gradle`; see bullet below)
to 8.6.0. If a user runs into an error with the AGP version, the warning
to 8.9.1. If a user runs into an error with the AGP version, the warning
is clear on how to upgrade the version to one that we support.
- Refactor plugin to use declarative Gradle apply instead of the
imperative apply (this includes moving where the Android Gradle
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-all.zip
2 changes: 1 addition & 1 deletion .ci/legacy_project/all_packages/android/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pluginManagement {
// See https://github.com/flutter/flutter/blob/master/docs/ecosystem/Plugins-and-Packages-repository-structure.md#gradle-structure for more info.
plugins {
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
id "com.android.application" version "8.6.0" apply false
id "com.android.application" version "8.9.1" apply false
id "org.jetbrains.kotlin.android" version "2.1.0" apply false
}

Expand Down