Generated launcher icons
|
@ -3,7 +3,7 @@
|
|||
<application
|
||||
android:label="lightmeter"
|
||||
android:name="${applicationName}"
|
||||
android:icon="@mipmap/ic_launcher">
|
||||
android:icon="@mipmap/launcher_icon">
|
||||
<activity
|
||||
android:name=".MainActivity"
|
||||
android:exported="true"
|
||||
|
|
BIN
android/app/src/main/res/mipmap-hdpi/launcher_icon.png
Normal file
After Width: | Height: | Size: 2.4 KiB |
BIN
android/app/src/main/res/mipmap-mdpi/launcher_icon.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
android/app/src/main/res/mipmap-xhdpi/launcher_icon.png
Normal file
After Width: | Height: | Size: 2.6 KiB |
BIN
android/app/src/main/res/mipmap-xxhdpi/launcher_icon.png
Normal file
After Width: | Height: | Size: 4.1 KiB |
BIN
android/app/src/main/res/mipmap-xxxhdpi/launcher_icon.png
Normal file
After Width: | Height: | Size: 4.4 KiB |
BIN
assets/launcher_icon_circle.png
Normal file
After Width: | Height: | Size: 3.9 KiB |
BIN
assets/launcher_icon_square.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 564 B After Width: | Height: | Size: 323 B |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 626 B |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1,008 B |
Before Width: | Height: | Size: 1 KiB After Width: | Height: | Size: 476 B |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 964 B |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 626 B |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 785 B |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 942 B |
After Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 2 KiB |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 2.2 KiB |
11
pubspec.yaml
|
@ -23,7 +23,9 @@ dependencies:
|
|||
|
||||
dev_dependencies:
|
||||
google_fonts: ^3.0.1
|
||||
flutter_launcher_icons: 0.11.0
|
||||
flutter_lints: ^2.0.0
|
||||
flutter_native_splash: 2.2.16
|
||||
test: ^1.21.6
|
||||
|
||||
dependency_overrides:
|
||||
|
@ -63,5 +65,14 @@ flutter:
|
|||
# For details regarding fonts from package dependencies,
|
||||
# see https://flutter.dev/custom-fonts/#from-packages
|
||||
|
||||
flutter_icons:
|
||||
image_path_android: "assets/launcher_icon_circle.png"
|
||||
android: "launcher_icon"
|
||||
adaptive_icon_background: "#fafafa"
|
||||
image_path_ios: "assets/launcher_icon_square.png"
|
||||
ios: true
|
||||
remove_alpha_ios: true
|
||||
min_sdk_android: 21 # android min sdk min:16, default 21
|
||||
|
||||
flutter_intl:
|
||||
enabled: true
|
||||
|
|