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

    <uses-permission android:name="android.permission.STATUS_BAR_SERVICE" />

    <application
        android:allowClearUserData="false"
        android:label="@string/app_label"
        android:icon="@drawable/ic_launcher_settings">
                 
        <service
            android:name=".statusbar.StatusBarService"
            android:exported="false"
            />

        <activity android:name=".usb.UsbStorageActivity"
                android:excludeFromRecents="true">
        </activity>

    </application>
</manifest>