[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
diff --git a/pkgs/cronet_http/CHANGELOG.md b/pkgs/cronet_http/CHANGELOG.md
index c55699e..51fe012 100644
--- a/pkgs/cronet_http/CHANGELOG.md
+++ b/pkgs/cronet_http/CHANGELOG.md
@@ -2,6 +2,7 @@
 
 * Add a new `CronetStreamedResponse` class that provides additional information
   about the HTTP response.
+* Fix a Flutter warning by upgrading to Kotlin 1.18.10.
 
 ## 1.3.4
 
diff --git a/pkgs/cronet_http/example/android/settings.gradle b/pkgs/cronet_http/example/android/settings.gradle
index b18e1a0..27029b3 100644
--- a/pkgs/cronet_http/example/android/settings.gradle
+++ b/pkgs/cronet_http/example/android/settings.gradle
@@ -19,7 +19,7 @@
 plugins {
     id "dev.flutter.flutter-plugin-loader" version "1.0.0"
     id "com.android.application" version "8.6.0" apply false
-    id "org.jetbrains.kotlin.android" version "1.7.21" apply false
+    id "org.jetbrains.kotlin.android" version "1.8.10" apply false
 }
 
 include ":app"