Skip to content
Open
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: 4 additions & 0 deletions packages/url_launcher/url_launcher_android/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 6.3.31

* Bumps com.android.tools.build:gradle from 8.13.1 to 9.1.1.

## 6.3.30

* Updates internal implementation to use Kotlin Pigeon.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ buildscript {
}

dependencies {
classpath("com.android.tools.build:gradle:8.13.1")
classpath("com.android.tools.build:gradle:9.1.1")
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The version 9.1.1 appears to be a Gradle version rather than an Android Gradle Plugin (AGP) version. AGP versions (the com.android.tools.build:gradle dependency) are currently in the 8.x range and do not follow the same versioning sequence as Gradle itself. Using a Gradle version for the AGP dependency will likely cause the build to fail because that version of the plugin does not exist in the Google Maven repository. If the intent is to upgrade the Gradle build tool to 9.1.1, you should update the distributionUrl in gradle-wrapper.properties and use a compatible AGP version (e.g., 8.7.x).

classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
}
}
Expand Down
2 changes: 1 addition & 1 deletion packages/url_launcher/url_launcher_android/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: url_launcher_android
description: Android implementation of the url_launcher plugin.
repository: https://github.com/flutter/packages/tree/main/packages/url_launcher/url_launcher_android
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+url_launcher%22
version: 6.3.30
version: 6.3.31

environment:
sdk: ^3.9.0
Expand Down
Loading