fbfb2b8389
- C1Parts Settings app - CM7 LED Notifications support (liblights and overlay) Settings app supports - mDNIe settings - HSPA Config - Backlight timeout config - LED Notifications config (default off) Change-Id: Ib43ea0ca8846a358dc48b91f911a3a1899d2c7a6
19 lines
799 B
XML
19 lines
799 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.cyanogenmod.C1Parts" android:sharedUserId="android.uid.system">
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
|
<application android:label="@string/app_name">
|
|
<activity android:name=".C1Parts"
|
|
android:label="@string/app_name">
|
|
<intent-filter>
|
|
<action android:name="com.cyanogenmod.action.LAUNCH_DEVICE_SETTINGS" />
|
|
</intent-filter>
|
|
</activity>
|
|
<receiver android:name=".Startup">
|
|
<intent-filter android:priority="100">
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
</intent-filter>
|
|
</receiver>
|
|
</application>
|
|
</manifest>
|