Move Spare Parts 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: I48c27f7a8b115365c5827ddaa9e8710f3b81358e
diff --git a/apps/SpareParts/AndroidManifest.xml b/apps/SpareParts/AndroidManifest.xml
index 85de7a4..137f907 100644
--- a/apps/SpareParts/AndroidManifest.xml
+++ b/apps/SpareParts/AndroidManifest.xml
@@ -21,7 +21,7 @@
     <uses-permission android:name="android.permission.WRITE_SETTINGS" />
     
     <application android:label="@string/app_label"
-            android:icon="@drawable/app_icon">
+            android:icon="@mipmap/app_icon">
 
         <activity android:name="SpareParts">
             <intent-filter>
diff --git a/apps/SpareParts/res/drawable-hdpi/app_icon.png b/apps/SpareParts/res/mipmap-hdpi/app_icon.png
similarity index 100%
rename from apps/SpareParts/res/drawable-hdpi/app_icon.png
rename to apps/SpareParts/res/mipmap-hdpi/app_icon.png
Binary files differ
diff --git a/apps/SpareParts/res/drawable-mdpi/app_icon.png b/apps/SpareParts/res/mipmap-mdpi/app_icon.png
similarity index 100%
rename from apps/SpareParts/res/drawable-mdpi/app_icon.png
rename to apps/SpareParts/res/mipmap-mdpi/app_icon.png
Binary files differ