xref: /aosp_15_r20/frameworks/base/tests/StatusBar/AndroidManifest.xml (revision d57664e9bc4670b3ecf6748a746a57c557b6bc9e)
1*d57664e9SAndroid Build Coastguard Worker<?xml version="1.0" encoding="utf-8"?>
2*d57664e9SAndroid Build Coastguard Worker
3*d57664e9SAndroid Build Coastguard Worker<manifest xmlns:android="http://schemas.android.com/apk/res/android"
4*d57664e9SAndroid Build Coastguard Worker     package="com.android.statusbartest">
5*d57664e9SAndroid Build Coastguard Worker    <uses-permission android:name="android.permission.DEVICE_POWER"/>
6*d57664e9SAndroid Build Coastguard Worker    <uses-permission android:name="android.permission.WAKE_LOCK"/>
7*d57664e9SAndroid Build Coastguard Worker    <uses-permission android:name="android.permission.STATUS_BAR"/>
8*d57664e9SAndroid Build Coastguard Worker    <uses-permission android:name="android.permission.EXPAND_STATUS_BAR"/>
9*d57664e9SAndroid Build Coastguard Worker    <uses-permission android:name="android.permission.VIBRATE"/>
10*d57664e9SAndroid Build Coastguard Worker    <uses-permission android:name="android.permission.CHANGE_COMPONENT_ENABLED_STATE"/>
11*d57664e9SAndroid Build Coastguard Worker    <uses-permission android:name="android.permission.MANAGE_NOTIFICATIONS"/>
12*d57664e9SAndroid Build Coastguard Worker
13*d57664e9SAndroid Build Coastguard Worker    <application>
14*d57664e9SAndroid Build Coastguard Worker        <activity android:name="StatusBarTest"
15*d57664e9SAndroid Build Coastguard Worker             android:label="_StatusBar"
16*d57664e9SAndroid Build Coastguard Worker             android:exported="true">
17*d57664e9SAndroid Build Coastguard Worker            <intent-filter>
18*d57664e9SAndroid Build Coastguard Worker                <action android:name="android.intent.action.MAIN"/>
19*d57664e9SAndroid Build Coastguard Worker                <category android:name="android.intent.category.DEFAULT"/>
20*d57664e9SAndroid Build Coastguard Worker                <category android:name="android.intent.category.LAUNCHER"/>
21*d57664e9SAndroid Build Coastguard Worker            </intent-filter>
22*d57664e9SAndroid Build Coastguard Worker        </activity>
23*d57664e9SAndroid Build Coastguard Worker        <activity android:name="NotificationTestList"
24*d57664e9SAndroid Build Coastguard Worker             android:label="_Notifications"
25*d57664e9SAndroid Build Coastguard Worker             android:exported="true">
26*d57664e9SAndroid Build Coastguard Worker            <intent-filter>
27*d57664e9SAndroid Build Coastguard Worker                <action android:name="android.intent.action.MAIN"/>
28*d57664e9SAndroid Build Coastguard Worker                <category android:name="android.intent.category.DEFAULT"/>
29*d57664e9SAndroid Build Coastguard Worker                <category android:name="android.intent.category.LAUNCHER"/>
30*d57664e9SAndroid Build Coastguard Worker            </intent-filter>
31*d57664e9SAndroid Build Coastguard Worker        </activity>
32*d57664e9SAndroid Build Coastguard Worker        <activity android:name="NotificationBuilderTest"
33*d57664e9SAndroid Build Coastguard Worker             android:label="_Notify Builder"
34*d57664e9SAndroid Build Coastguard Worker             android:theme="@android:style/Theme.Holo"
35*d57664e9SAndroid Build Coastguard Worker             android:hardwareAccelerated="true"
36*d57664e9SAndroid Build Coastguard Worker             android:exported="true">
37*d57664e9SAndroid Build Coastguard Worker            <intent-filter>
38*d57664e9SAndroid Build Coastguard Worker                <action android:name="android.intent.action.MAIN"/>
39*d57664e9SAndroid Build Coastguard Worker                <category android:name="android.intent.category.DEFAULT"/>
40*d57664e9SAndroid Build Coastguard Worker                <category android:name="android.intent.category.LAUNCHER"/>
41*d57664e9SAndroid Build Coastguard Worker            </intent-filter>
42*d57664e9SAndroid Build Coastguard Worker        </activity>
43*d57664e9SAndroid Build Coastguard Worker        <activity android:name="ToastTest"
44*d57664e9SAndroid Build Coastguard Worker             android:label="_Toasts"
45*d57664e9SAndroid Build Coastguard Worker             android:exported="true">
46*d57664e9SAndroid Build Coastguard Worker            <intent-filter>
47*d57664e9SAndroid Build Coastguard Worker                <action android:name="android.intent.action.MAIN"/>
48*d57664e9SAndroid Build Coastguard Worker                <category android:name="android.intent.category.DEFAULT"/>
49*d57664e9SAndroid Build Coastguard Worker                <category android:name="android.intent.category.LAUNCHER"/>
50*d57664e9SAndroid Build Coastguard Worker            </intent-filter>
51*d57664e9SAndroid Build Coastguard Worker        </activity>
52*d57664e9SAndroid Build Coastguard Worker        <activity android:name="PowerTest"
53*d57664e9SAndroid Build Coastguard Worker             android:label="_Power"
54*d57664e9SAndroid Build Coastguard Worker             android:exported="true">
55*d57664e9SAndroid Build Coastguard Worker            <intent-filter>
56*d57664e9SAndroid Build Coastguard Worker                <action android:name="android.intent.action.MAIN"/>
57*d57664e9SAndroid Build Coastguard Worker                <category android:name="android.intent.category.DEFAULT"/>
58*d57664e9SAndroid Build Coastguard Worker                <category android:name="android.intent.category.LAUNCHER"/>
59*d57664e9SAndroid Build Coastguard Worker            </intent-filter>
60*d57664e9SAndroid Build Coastguard Worker        </activity>
61*d57664e9SAndroid Build Coastguard Worker        <activity android:name="ConfirmationActivity"
62*d57664e9SAndroid Build Coastguard Worker             android:theme="@android:style/Theme.Dialog">
63*d57664e9SAndroid Build Coastguard Worker        </activity>
64*d57664e9SAndroid Build Coastguard Worker        <activity android:name="TestAlertActivity"
65*d57664e9SAndroid Build Coastguard Worker             android:theme="@android:style/Theme.Dialog">
66*d57664e9SAndroid Build Coastguard Worker        </activity>
67*d57664e9SAndroid Build Coastguard Worker    </application>
68*d57664e9SAndroid Build Coastguard Worker</manifest>
69