Files
android_development/apps/SpareParts/AndroidManifest.xml
Kenny Root 619e69ed8a 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
2010-11-23 10:02:19 -08:00

36 lines
1.5 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.spare_parts">
<uses-permission android:name="android.permission.SET_ANIMATION_SCALE" />
<uses-permission android:name="android.permission.CHANGE_CONFIGURATION" />
<uses-permission android:name="android.permission.WRITE_SETTINGS" />
<application android:label="@string/app_label"
android:icon="@mipmap/app_icon">
<activity android:name="SpareParts">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>