- Breaking change bumped minimum Flutter SDK requirement to 3.22.0 and Dart SDK requirement to 3.4.0. The minimum supported Android version is now 5.0 (API level 21)
- Bumped Android Gradle Plugin to 8.6.0 to align with the minimum version to use
compileSdkversion 35 (Android 15) - [Android] bumped desugaring library to 2.1.4 and set Java compatibility to 11 instead of 8. Readme has been updated to reflect these changes where
sourceCompatibilityandtargetCompabilityshould be set to JavaVersion.VERSION_11 (i.e. Java 11), andjvmTargetis set to11 - Bumped multiple dependencies in example app
- Bumped minimum
plugin_platform_interfaceversion to 2.1.8 - Updated example app's
AndroidManifest.xmlto request internet permissions so that release builds can download remote content - [Android] bumped GSON dependency to 2.12. As a result of doing so, applications should no longer need ProGuard rules related to this plugin that were needed for release builds to function. The readme has been updated to remove the associated setup to reflect this. Thanks to the PR from Koji Wakamiya