Files
frameworks_base/packages/StatusBarPhone/AndroidManifest.xml
Joe Onorato 94c98c0ed5 PhoneStatusBarService
Change-Id: I8c71f827f6cfb4f5dd5f13891c54fcd1f9680a46
2010-06-02 14:48:40 -07:00

23 lines
737 B
XML

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.policy.statusbar.phone"
android:sharedUserId="android.uid.system">
<application
android:allowClearUserData="false"
android:label="@string/app_label"
android:icon="@drawable/ic_launcher_settings">
<receiver
android:name="StatusBarStarter"
>
<intent-filter>
<action android:name="com.android.internal.policy.statusbar.START" />
</intent-filter>
</receiver>
<service
android:name="PhoneStatusBarService"
android:exported="false"
/>
</application>
</manifest>