summaryrefslogtreecommitdiffstats
path: root/packages/SystemUI/AndroidManifest.xml
blob: 3f5b69d84ae3752d94a06c267a8f1bda50fc4ec6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="com.android.systemui"
        android:sharedUserId="android.uid.system">

    <application
        android:allowClearUserData="false"
        android:label="@string/app_label"
        android:icon="@drawable/ic_launcher_settings">
                 
        <receiver
            android:name=".statusbar.StatusBarStarter"
            >
            <intent-filter>
                <action android:name="com.android.internal.policy.statusbar.START" />
            </intent-filter>
        </receiver>
        <service
            android:name=".statusbar.PhoneStatusBarService"
            android:exported="false"
            />
    </application>
</manifest>