Skip to content

Commit 5fd5f74

Browse files
authored
[url_launcher] updates build files to use JVM 17 (#10130)
part of [#176027](flutter/flutter#176027). All dart code changes were formatter changes. ## Pre-Review Checklist **Note**: The Flutter team is currently trialing the use of [Gemini Code Assist for GitHub](https://developers.google.com/gemini-code-assist/docs/review-github-code). Comments from the `gemini-code-assist` bot should not be taken as authoritative feedback from the Flutter team. If you find its comments useful you can update your code accordingly, but if you are unsure or disagree with the feedback, please feel free to wait for a Flutter team member's review for guidance on which automated comments should be addressed. [^1]: Regular contributors who have demonstrated familiarity with the repository guidelines only need to comment if the PR is not auto-exempted by repo tooling.
1 parent 28088d3 commit 5fd5f74

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

packages/url_launcher/url_launcher_android/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 6.3.23
2+
3+
* Updates Java compatibility version to 17.
4+
15
## 6.3.22
26

37
* Adds support for `externalNonBrowserApplication` on API 30+.

packages/url_launcher/url_launcher_android/android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ android {
3434
}
3535

3636
compileOptions {
37-
sourceCompatibility = JavaVersion.VERSION_11
38-
targetCompatibility = JavaVersion.VERSION_11
37+
sourceCompatibility = JavaVersion.VERSION_17
38+
targetCompatibility = JavaVersion.VERSION_17
3939
}
4040

4141
lintOptions {

packages/url_launcher/url_launcher_android/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: url_launcher_android
22
description: Android implementation of the url_launcher plugin.
33
repository: https://github.com/flutter/packages/tree/main/packages/url_launcher/url_launcher_android
44
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+url_launcher%22
5-
version: 6.3.22
5+
version: 6.3.23
66

77
environment:
88
sdk: ^3.9.0

0 commit comments

Comments
 (0)