diff --git a/src/com/android/launcher3/IconCache.java b/src/com/android/launcher3/IconCache.java index a23a674479..4b71ba01d2 100644 --- a/src/com/android/launcher3/IconCache.java +++ b/src/com/android/launcher3/IconCache.java @@ -120,7 +120,8 @@ public class IconCache { } private Drawable getFullResDefaultActivityIcon() { - return getFullResIcon(Resources.getSystem(), android.R.drawable.sym_def_app_icon); + return getFullResIcon(Resources.getSystem(), Utilities.isAtLeastO() ? + android.R.drawable.sym_def_app_icon : android.R.mipmap.sym_def_app_icon); } private Drawable getFullResIcon(Resources resources, int iconId) {