Skip to content

Commit 4209e84

Browse files
authored
[cronet_http] Upgrade to kotlin 1.8.10 (#1789)
* [cronet_http] Upgrade to kotlin 1.8.10 Fixes this warning: ``` Warning: Flutter support for your project's Kotlin version (1.8.0) will soon be dropped. Please upgrade your Kotlin version to a version of at least 1.8.10 soon. Alternatively, use the flag "--android-skip-build-dependency-validation" to bypass this check. Potential fix: Your project's KGP version is typically defined in the plugins block of the `settings.gradle` file (/Users/bquinlan/dart/http/pkgs/cronet_http/example/android/settings.gradle), by a plugin with the id of org.jetbrains.kotlin.android. If you don't see a plugins block, your project was likely created with an older template version, in which case it is most likely defined in the top-level build.gradle file (/Users/bquinlan/dart/http/pkgs/cronet_http/example/android/build.gradle) by the ext.kotlin_version property. ``` * Update CHANGELOG.md
1 parent d2886a0 commit 4209e84

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

pkgs/cronet_http/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
* Add a new `CronetStreamedResponse` class that provides additional information
44
about the HTTP response.
5+
* Fix a Flutter warning by upgrading to Kotlin 1.18.10.
56

67
## 1.3.4
78

pkgs/cronet_http/example/android/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ pluginManagement {
1919
plugins {
2020
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
2121
id "com.android.application" version "8.6.0" apply false
22-
id "org.jetbrains.kotlin.android" version "1.7.21" apply false
22+
id "org.jetbrains.kotlin.android" version "1.8.10" apply false
2323
}
2424

2525
include ":app"

0 commit comments

Comments
 (0)