Jim Miller | 5ecd811 | 2013-01-09 18:50:26 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- |
| 3 | /* |
| 4 | ** Copyright 2013, The Android Open Source Project |
| 5 | ** |
| 6 | ** Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | ** you may not use this file except in compliance with the License. |
| 8 | ** You may obtain a copy of the License at |
| 9 | ** |
| 10 | ** http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | ** |
| 12 | ** Unless required by applicable law or agreed to in writing, software |
| 13 | ** distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | ** See the License for the specific language governing permissions and |
| 16 | ** limitations under the License. |
| 17 | */ |
| 18 | --> |
| 19 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 20 | package="com.android.keyguard" |
| 21 | android:sharedUserId="android.uid.systemui" |
| 22 | coreApp="true"> |
| 23 | <uses-sdk android:minSdkVersion="10" android:targetSdkVersion="17"/> |
| 24 | <uses-permission android:name="android.permission.VIBRATE" /> |
| 25 | <uses-permission android:name="android.permission.MODIFY_PHONE_STATE" /> |
| 26 | <uses-permission android:name="android.permission.GET_ACCOUNTS" /> |
| 27 | <uses-permission android:name="android.permission.MANAGE_ACCOUNTS" /> |
| 28 | <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL" /> |
| 29 | <uses-permission android:name="android.permission.WAKE_LOCK" /> |
| 30 | <uses-permission android:name="android.permission.STATUS_BAR" /> |
| 31 | <uses-permission android:name="android.permission.DEVICE_POWER" /> |
| 32 | <uses-permission android:name="android.permission.MANAGE_USERS" /> |
| 33 | <uses-permission android:name="android.permission.MANAGE_APP_TOKENS" /> |
| 34 | <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> |
| 35 | <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" /> |
| 36 | <uses-permission android:name="android.permission.BIND_APPWIDGET" /> |
| 37 | <uses-permission android:name="android.permission.INTERNAL_SYSTEM_WINDOW" /> |
| 38 | <uses-permission android:name="android.permission.BIND_DEVICE_ADMIN" /> |
| 39 | <uses-permission android:name="android.permission.CHANGE_COMPONENT_ENABLED_STATE" /> |
Jean-Michel Trivi | 7ddd226 | 2013-09-01 18:06:45 -0700 | [diff] [blame] | 40 | <uses-permission android:name="android.permission.MEDIA_CONTENT_CONTROL" /> |
Jim Miller | 505329b | 2013-11-08 13:25:36 -0800 | [diff] [blame] | 41 | <uses-permission android:name="android.permission.ACCESS_KEYGUARD_SECURE_STORAGE" /> |
Adrian Roos | 46842d9 | 2014-03-27 14:58:03 +0100 | [diff] [blame] | 42 | <uses-permission android:name="android.permission.TRUST_LISTENER" /> |
Jim Miller | 5ecd811 | 2013-01-09 18:50:26 -0800 | [diff] [blame] | 43 | |
Jim Miller | c0b676d | 2013-03-22 16:11:08 -0700 | [diff] [blame] | 44 | <application android:label="@string/app_name" |
Jim Miller | 9512953 | 2013-06-12 14:18:07 -0700 | [diff] [blame] | 45 | android:process="com.android.systemui" |
Jim Miller | 4780058 | 2013-09-23 17:01:14 -0700 | [diff] [blame] | 46 | android:persistent="true" |
Alexandra Gherghina | 8f6b3a0 | 2014-04-11 11:28:34 +0000 | [diff] [blame] | 47 | android:supportsRtl="true"> |
Jim Miller | 5ecd811 | 2013-01-09 18:50:26 -0800 | [diff] [blame] | 48 | |
Jim Miller | 5ecd811 | 2013-01-09 18:50:26 -0800 | [diff] [blame] | 49 | </application> |
| 50 | </manifest> |