Skip to content

Commit

Permalink
release v2.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mrrhak committed Jul 7, 2023
1 parent e8d9bb6 commit 43f92c9
Show file tree
Hide file tree
Showing 9 changed files with 28 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,9 @@
# Changelog

## 2.1.3

- Fix round icons on android and ability to use without monochrome ([#35](https://github.com/mrrhak/icons_launcher/pull/35))

## 2.1.2

- Fixed android monochrome icon is smaller and blurred ([#32](https://github.com/mrrhak/icons_launcher/pull/32))
Expand Down
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@mipmap/ic_launcher_background"/>
<foreground android:drawable="@mipmap/ic_launcher_round"/>
<monochrome android:drawable="@mipmap/ic_launcher_monochrome"/>
</adaptive-icon>
@@ -1,6 +1,6 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.flavor_app">
<application android:label="@string/app_name" android:name="${applicationName}" android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher_round" >
android:roundIcon="@mipmap/ic_launcher_rounded" >
<activity android:name=".MainActivity" android:exported="true" android:launchMode="singleTop" android:theme="@style/LaunchTheme" android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" android:hardwareAccelerated="true" android:windowSoftInputMode="adjustResize">
<!-- Specifies an Android theme to apply to this Activity as soon as
the Android process has started. This theme is visible to the user
Expand Down
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@mipmap/ic_launcher_background"/>
<foreground android:drawable="@mipmap/ic_launcher_round"/>
<monochrome android:drawable="@mipmap/ic_launcher_monochrome"/>
</adaptive-icon>
Expand Up @@ -4,7 +4,7 @@
android:label="simple_app"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher_round"
android:roundIcon="@mipmap/ic_launcher_rounded"

>
<activity
Expand Down
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@mipmap/ic_launcher_background"/>
<foreground android:drawable="@mipmap/ic_launcher_round"/>
<monochrome android:drawable="@mipmap/ic_launcher_monochrome"/>
</adaptive-icon>
2 changes: 1 addition & 1 deletion example/simple_app/pubspec.yaml
Expand Up @@ -14,7 +14,7 @@ dependencies:
dev_dependencies:
flutter_test:
sdk: flutter
flutter_lints: ^2.0.1
flutter_lints: ^2.0.2
icons_launcher:
path: ../../

Expand Down
2 changes: 1 addition & 1 deletion lib/src/version.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pubspec.yaml
Expand Up @@ -4,7 +4,7 @@ maintainer: Mrr Hak
homepage: https://mrrhak.com
repository: https://github.com/mrrhak/icons_launcher
issue_tracker: https://github.com/mrrhak/icons_launcher/issues
version: 2.1.2
version: 2.1.3
funding:
- https://ko-fi.com/mrrhak
screenshots:
Expand All @@ -24,4 +24,4 @@ environment:
dev_dependencies:
build_runner: ^2.3.3
build_version: ^2.1.1
test: ^1.24.3
test: ^1.24.4

0 comments on commit 43f92c9

Please sign in to comment.