From 0cba157889740a8aa75720530d2aa63050b2b347 Mon Sep 17 00:00:00 2001 From: Kenny Root Date: Tue, 23 Nov 2010 09:58:50 -0800 Subject: [PATCH] Move Dev Tools icon to mipmap So that the different icon densities don't get stripped out of the build by aapt, move it to the mipmap directory. This will ensure that any program using the getDrawableByDensity API can read any density/size of the icon needed. Change-Id: I8ee4f7233358be4d68133b20090323251511677a --- apps/Development/AndroidManifest.xml | 4 ++-- .../ic_launcher_devtools.png | Bin .../ic_launcher_devtools.png | Bin 3 files changed, 2 insertions(+), 2 deletions(-) rename apps/Development/res/{drawable-hdpi => mipmap-hdpi}/ic_launcher_devtools.png (100%) rename apps/Development/res/{drawable-mdpi => mipmap-mdpi}/ic_launcher_devtools.png (100%) diff --git a/apps/Development/AndroidManifest.xml b/apps/Development/AndroidManifest.xml index 827b57a7c..c91e21be3 100644 --- a/apps/Development/AndroidManifest.xml +++ b/apps/Development/AndroidManifest.xml @@ -44,12 +44,12 @@ + android:icon="@mipmap/ic_launcher_devtools"> + android:icon="@mipmap/ic_launcher_devtools"> diff --git a/apps/Development/res/drawable-hdpi/ic_launcher_devtools.png b/apps/Development/res/mipmap-hdpi/ic_launcher_devtools.png similarity index 100% rename from apps/Development/res/drawable-hdpi/ic_launcher_devtools.png rename to apps/Development/res/mipmap-hdpi/ic_launcher_devtools.png diff --git a/apps/Development/res/drawable-mdpi/ic_launcher_devtools.png b/apps/Development/res/mipmap-mdpi/ic_launcher_devtools.png similarity index 100% rename from apps/Development/res/drawable-mdpi/ic_launcher_devtools.png rename to apps/Development/res/mipmap-mdpi/ic_launcher_devtools.png