diff --git a/CHANGELOG.md b/CHANGELOG.md index fd66611f..6236b3ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## [8.2.4] + +- Reverted the minSDK 22 which broke many apps - Sorry everyone + ## [8.2.3] - Merged PR #466 (fixes issue in android) diff --git a/README.md b/README.md index 7150c241..90e7f0ad 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ This one has limited features and no control over UI ```yaml # add this line to your dependencies -fluttertoast: ^8.2.3 +fluttertoast: ^8.2.4 ``` ```dart diff --git a/android/build.gradle b/android/build.gradle index 9db95d8e..f046af9a 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -25,7 +25,7 @@ apply plugin: 'com.android.library' apply plugin: 'kotlin-android' android { - compileSdkVersion 34 + compileSdkVersion 31 compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 @@ -40,7 +40,7 @@ android { main.java.srcDirs += 'src/main/kotlin' } defaultConfig { - minSdkVersion 22 + minSdkVersion 21 if (project.android.hasProperty('namespace')) { namespace 'io.github.ponnamkarthik.toast.fluttertoast' } diff --git a/example/android/app/build.gradle b/example/android/app/build.gradle index 97b98d71..16616af1 100644 --- a/example/android/app/build.gradle +++ b/example/android/app/build.gradle @@ -26,7 +26,7 @@ apply plugin: 'kotlin-android' apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" android { - compileSdkVersion 34 + compileSdkVersion 31 ndkVersion flutter.ndkVersion compileOptions { @@ -47,7 +47,7 @@ android { applicationId "com.example.example" // You can update the following values to match your application needs. // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-build-configuration. - minSdkVersion 22 + minSdkVersion 21 targetSdkVersion flutter.targetSdkVersion versionCode flutterVersionCode.toInteger() versionName flutterVersionName diff --git a/pubspec.yaml b/pubspec.yaml index bfc25246..aaadf84f 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: fluttertoast description: Toast Library for Flutter, Easily create toast messages in single line of code -version: 8.2.3 +version: 8.2.4 homepage: https://github.com/PonnamKarthik/FlutterToast issue_tracker: https://github.com/ponnamkarthik/FlutterToast/issues