summaryrefslogtreecommitdiffstats
path: root/DeviceSettings/AndroidManifest.xml
diff options
context:
space:
mode:
authorDaniel Hillenbrand <codeworkx@cyanogenmod.org>2013-04-13 12:33:40 +0000
committerDaniel Hillenbrand <codeworkx@cyanogenmod.org>2013-04-13 12:33:40 +0000
commitb85434c16ffe031270e6c8c62bd26fc46ddce37f (patch)
treed5a97bf3e72b8c40f670ee4d3fa4b0d7735d5ee8 /DeviceSettings/AndroidManifest.xml
parent02cb2585b1f0415e35623a284ef843ffedccd4ad (diff)
downloaddevice_samsung_p3100-b85434c16ffe031270e6c8c62bd26fc46ddce37f.zip
device_samsung_p3100-b85434c16ffe031270e6c8c62bd26fc46ddce37f.tar.gz
device_samsung_p3100-b85434c16ffe031270e6c8c62bd26fc46ddce37f.tar.bz2
p31xx: add support for dock audio
Change-Id: I35363baf1d0ad4930bee049faf6e8ae25ad94211
Diffstat (limited to 'DeviceSettings/AndroidManifest.xml')
-rw-r--r--DeviceSettings/AndroidManifest.xml31
1 files changed, 31 insertions, 0 deletions
diff --git a/DeviceSettings/AndroidManifest.xml b/DeviceSettings/AndroidManifest.xml
new file mode 100644
index 0000000..a581d10
--- /dev/null
+++ b/DeviceSettings/AndroidManifest.xml
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.cyanogenmod.settings.device"
+ 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="com.cyanogenmod.settings.device.DeviceSettings"
+ android:icon="@drawable/ic_launcher_cmdevicesettings"
+ android:label="@string/app_name" >
+ <intent-filter>
+ <action android:name="com.cyanogenmod.action.LAUNCH_DEVICE_SETTINGS" />
+ <action android:name="android.intent.action.MAIN" />
+ </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=".HapticFragmentActivity" />
+ <activity android:name=".RadioFragmentActivity" />
+ <activity android:name=".ScreenFragmentActivity" />
+
+ </application>
+</manifest>