We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0cdb38 commit 95891d4Copy full SHA for 95891d4
2 files changed
pkgs/cronet_http/CHANGELOG.md
@@ -2,6 +2,7 @@
2
3
* Made callbacks asynchronous to prevent background errors caused by the
4
unavailability of the Dart callback.
5
+* Change the compile SDK version to 35 for compatibility with `package:jni`.
6
7
## 1.7.0
8
pkgs/cronet_http/android/build.gradle
@@ -28,7 +28,8 @@ android {
28
namespace 'io.flutter.plugins.cronet_http'
29
}
30
31
- compileSdkVersion 34
+ // package:jni requires compileSdkVersion 35
32
+ compileSdkVersion 35
33
34
compileOptions {
35
sourceCompatibility JavaVersion.VERSION_11
0 commit comments