summaryrefslogtreecommitdiffstats
path: root/CrespoParts/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'CrespoParts/AndroidManifest.xml')
-rw-r--r--CrespoParts/AndroidManifest.xml24
1 files changed, 24 insertions, 0 deletions
diff --git a/CrespoParts/AndroidManifest.xml b/CrespoParts/AndroidManifest.xml
new file mode 100644
index 0000000..681dc51
--- /dev/null
+++ b/CrespoParts/AndroidManifest.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.cyanogenmod.CrespoParts" android:sharedUserId="android.uid.system">
+ <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
+ <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" />
+ <application android:label="@string/app_name">
+ <activity android:name=".CrespoParts"
+ 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>
+ <activity android:name=".WM8994ControlActivity">
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ </intent-filter>
+ </activity>
+ </application>
+</manifest>