blob: e311197cfb2d933eba5e047189e3f6f997c4b491 [file] [log] [blame]
Joe Onorato7277e822011-04-06 14:04:39 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2008 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
17<manifest xmlns:android="http://schemas.android.com/apk/res/android"
18 package="com.android.spare_parts">
19 <uses-permission android:name="android.permission.SET_ANIMATION_SCALE" />
20 <uses-permission android:name="android.permission.CHANGE_CONFIGURATION" />
21 <uses-permission android:name="android.permission.WRITE_SETTINGS" />
22
23 <application android:label="@string/app_label"
24 android:icon="@mipmap/app_icon">
25
Joe Onorato10f05a52011-04-06 18:25:45 -070026 <activity
27 android:name="SpareParts"
28 android:enabled="false">
Joe Onorato7277e822011-04-06 14:04:39 -070029 <intent-filter>
30 <action android:name="android.intent.action.MAIN" />
31 <category android:name="android.intent.category.DEFAULT" />
32 <category android:name="android.intent.category.LAUNCHER" />
33 </intent-filter>
34 </activity>
35
Joe Onorato10f05a52011-04-06 18:25:45 -070036 <receiver
37 android:name="Enabler">
38 <intent-filter>
39 <action android:name="android.intent.action.ADVANCED_SETTINGS" />
40 </intent-filter>
41 </receiver>
42
Joe Onorato7277e822011-04-06 14:04:39 -070043 </application>
44</manifest>