Move app icons to mipmap directories

This commit is contained in:
williamvds 2018-11-03 13:50:30 +00:00
parent acf6e7c041
commit 424b71cdfc
No known key found for this signature in database
GPG key ID: 7A4DF5A8CDBD49C7
12 changed files with 3 additions and 3 deletions

View file

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

View file

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

View file

Before

Width:  |  Height:  |  Size: 5.6 KiB

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

Before

Width:  |  Height:  |  Size: 9 KiB

After

Width:  |  Height:  |  Size: 9 KiB

View file

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 13 KiB

View file

@ -55,7 +55,7 @@
<application
android:name="com.fsck.k9.App"
android:allowTaskReparenting="false"
android:icon="@drawable/icon"
android:icon="@mipmap/icon"
android:label="@string/app_name"
android:theme="@style/Theme.K9.Startup"
android:resizeableActivity="true"
@ -389,7 +389,7 @@
<receiver
android:name=".widget.unread.UnreadWidgetProvider"
android:icon="@drawable/icon"
android:icon="@mipmap/icon"
android:label="@string/unread_widget_label">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE"/>

View file

@ -44,7 +44,7 @@ public class LauncherShortcuts extends AccountList {
description = account.getEmail();
}
intent.putExtra(Intent.EXTRA_SHORTCUT_NAME, description);
Parcelable iconResource = Intent.ShortcutIconResource.fromContext(this, R.drawable.icon);
Parcelable iconResource = Intent.ShortcutIconResource.fromContext(this, R.mipmap.icon);
intent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, iconResource);
setResult(RESULT_OK, intent);

View file

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

View file

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

View file

Before

Width:  |  Height:  |  Size: 5.4 KiB

After

Width:  |  Height:  |  Size: 5.4 KiB

View file

Before

Width:  |  Height:  |  Size: 8.7 KiB

After

Width:  |  Height:  |  Size: 8.7 KiB

View file

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB