Skip to content

Commit

Permalink
8.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ponnamkarthik committed Nov 11, 2023
1 parent 94f5549 commit fc43119
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions 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)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions android/build.gradle
Expand Up @@ -25,7 +25,7 @@ apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'

android {
compileSdkVersion 34
compileSdkVersion 31

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
Expand All @@ -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'
}
Expand Down
4 changes: 2 additions & 2 deletions example/android/app/build.gradle
Expand Up @@ -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 {
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion 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

Expand Down

0 comments on commit fc43119

Please sign in to comment.