The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 2 | package="com.android.statusbartest"> |
| 3 | <uses-permission android:name="android.permission.DEVICE_POWER" /> |
Joe Onorato | e71d9e4 | 2009-11-05 17:12:18 -0500 | [diff] [blame] | 4 | <uses-permission android:name="android.permission.WAKE_LOCK" /> |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 5 | <uses-permission android:name="android.permission.STATUS_BAR" /> |
| 6 | <uses-permission android:name="android.permission.EXPAND_STATUS_BAR" /> |
| 7 | <uses-permission android:name="android.permission.VIBRATE" /> |
Joe Onorato | d070e89 | 2011-01-07 20:50:37 -0800 | [diff] [blame] | 8 | <uses-permission android:name="android.permission.CHANGE_COMPONENT_ENABLED_STATE" /> |
Julia Reynolds | 16eb52a | 2017-06-23 16:13:20 -0400 | [diff] [blame] | 9 | <uses-permission android:name="android.permission.MANAGE_NOTIFICATIONS" /> |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 10 | |
| 11 | <application> |
| 12 | <activity android:name="StatusBarTest" android:label="_StatusBar"> |
| 13 | <intent-filter> |
| 14 | <action android:name="android.intent.action.MAIN" /> |
| 15 | <category android:name="android.intent.category.DEFAULT" /> |
| 16 | <category android:name="android.intent.category.LAUNCHER" /> |
| 17 | </intent-filter> |
| 18 | </activity> |
| 19 | <activity android:name="NotificationTestList" android:label="_Notifications"> |
| 20 | <intent-filter> |
| 21 | <action android:name="android.intent.action.MAIN" /> |
| 22 | <category android:name="android.intent.category.DEFAULT" /> |
| 23 | <category android:name="android.intent.category.LAUNCHER" /> |
| 24 | </intent-filter> |
| 25 | </activity> |
Joe Onorato | 8d0b655 | 2010-11-22 16:09:29 -0800 | [diff] [blame] | 26 | <activity android:name="NotificationBuilderTest" |
| 27 | android:label="_Notify Builder" |
| 28 | android:theme="@android:style/Theme.Holo" |
| 29 | android:hardwareAccelerated="true" |
| 30 | > |
Joe Onorato | 46439ce | 2010-11-19 13:56:21 -0800 | [diff] [blame] | 31 | <intent-filter> |
| 32 | <action android:name="android.intent.action.MAIN" /> |
| 33 | <category android:name="android.intent.category.DEFAULT" /> |
| 34 | <category android:name="android.intent.category.LAUNCHER" /> |
| 35 | </intent-filter> |
| 36 | </activity> |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 37 | <activity android:name="ToastTest" android:label="_Toasts"> |
| 38 | <intent-filter> |
| 39 | <action android:name="android.intent.action.MAIN" /> |
| 40 | <category android:name="android.intent.category.DEFAULT" /> |
| 41 | <category android:name="android.intent.category.LAUNCHER" /> |
| 42 | </intent-filter> |
| 43 | </activity> |
| 44 | <activity android:name="PowerTest" android:label="_Power"> |
| 45 | <intent-filter> |
| 46 | <action android:name="android.intent.action.MAIN" /> |
| 47 | <category android:name="android.intent.category.DEFAULT" /> |
| 48 | <category android:name="android.intent.category.LAUNCHER" /> |
| 49 | </intent-filter> |
| 50 | </activity> |
Joe Onorato | 46439ce | 2010-11-19 13:56:21 -0800 | [diff] [blame] | 51 | <activity android:name="ConfirmationActivity" android:theme="@android:style/Theme.Dialog"> |
| 52 | </activity> |
Daniel Sandler | 8896783 | 2010-06-23 15:29:59 -0400 | [diff] [blame] | 53 | <activity android:name="TestAlertActivity" android:theme="@android:style/Theme.Dialog"> |
| 54 | </activity> |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 55 | </application> |
| 56 | </manifest> |