Skip to content

Commit

Permalink
Updated readme and dependancies.
Browse files Browse the repository at this point in the history
Add CI, resolve some lints, and fix tests. Thanks lsaudon for PR #433.
  • Loading branch information
jonbhanson committed Oct 23, 2022
1 parent d03227c commit e4b29f8
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## [2.2.12] - (2022-Oct-23)

- Updated readme and dependancies.
- Add CI, resolve some lints, and fix tests. Thanks [lsaudon](https://github.com/lsaudon) for [PR #433](https://github.com/jonbhanson/flutter_native_splash/pull/433).

## [2.2.11] - (2022-Oct-09)

- Fixed Android 11 color issue. Fixes [#429](https://github.com/jonbhanson/flutter_native_splash/issues/429).
Expand Down Expand Up @@ -87,7 +92,7 @@

- Add branding support in Android 12. Thanks [Vladimir](https://github.com/vlazdra) for the [PR](https://github.com/jonbhanson/flutter_native_splash/pull/316).
- Updated readme. Closes [#317](https://github.com/jonbhanson/flutter_native_splash/issues/317). Closes [#318](https://github.com/jonbhanson/flutter_native_splash/issues/318).
- Don't create a blank branding imageset. Fixes [#264](https://github.com/jonbhanson/flutter_native_splash/issues/264).
- Don't create a blank branding image set. Fixes [#264](https://github.com/jonbhanson/flutter_native_splash/issues/264).

## [2.1.1] - (2022-Mar-13)

Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ First, add `flutter_native_splash` as a dependency in your pubspec.yaml file.

```yaml
dependencies:
flutter_native_splash: ^2.2.11
flutter_native_splash: ^2.2.12
```
Don't forget to `flutter pub get`.
Expand Down Expand Up @@ -211,10 +211,12 @@ Android 12 has a [new method](https://developer.android.com/about/versions/12/fe

The package provides Android 12 support while maintaining the legacy splash screen for previous versions of Android.

**_PLEASE NOTE:_** The splash screen may not appear when you launch the app from Android Studio. However, it should appear when you launch by clicking on the launch icon in Android.
~~**_PLEASE NOTE:_** The splash screen may not appear when you launch the app from Android Studio. However, it should appear when you launch by clicking on the launch icon in Android.~~ This seems to be resolved now.

**_PLEASE NOTE:_** There are a number of reports that non-Google launchers do not display the launch image correctly. If the launch image does not display correctly, please try the Google launcher to confirm that this package is working.

**_PLEASE NOTE:_** The splash screen does not appear when you launch the app from a notification. Apparently this is the intended behavior on Android 12: [core-splashscreen Icon not shown when cold launched from notification](https://issuetracker.google.com/issues/199776339?pli=1).

# Flavor Support

If you have a project setup that contains multiple flavors or environments, and you created more than one flavor this would be a feature for you.
Expand Down
6 changes: 3 additions & 3 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: flutter_native_splash
description: Customize Flutter's default white native splash screen with
background color and splash image. Supports dark mode, full screen, and more.
version: 2.2.11
version: 2.2.12
repository: https://github.com/jonbhanson/flutter_native_splash
issue_tracker: https://github.com/jonbhanson/flutter_native_splash/issues

Expand All @@ -15,9 +15,9 @@ dependencies:
sdk: flutter
flutter_web_plugins:
sdk: flutter
html: ^0.15.0
image: ^3.2.0
js: ^0.6.4
html: ^0.15.1
image: ^3.2.2
meta: ^1.8.0
path: ^1.8.2
universal_io: ^2.0.4
Expand Down

0 comments on commit e4b29f8

Please sign in to comment.