summaryrefslogtreecommitdiffstats
path: root/DeviceSettings/AndroidManifest.xml
diff options
context:
space:
mode:
authorDaniel Hillenbrand <codeworkx@cyanogenmod.org>2013-06-09 11:52:24 +0200
committerDaniel Hillenbrand <codeworkx@cyanogenmod.org>2013-06-09 11:52:24 +0200
commit7926cd6ab83e1d8d02c13b4d65edd73f9f5866cb (patch)
treeebfc410f0f505f1f354afbc4c0d3a5f1cbd89009 /DeviceSettings/AndroidManifest.xml
parentc77f464613519e4c21ed1da33f1f8670dc412567 (diff)
downloaddevice_samsung_smdk4412-common-7926cd6ab83e1d8d02c13b4d65edd73f9f5866cb.zip
device_samsung_smdk4412-common-7926cd6ab83e1d8d02c13b4d65edd73f9f5866cb.tar.gz
device_samsung_smdk4412-common-7926cd6ab83e1d8d02c13b4d65edd73f9f5866cb.tar.bz2
smdk4412-common: move advanced settings from i9300
Change-Id: I17832eedbb503b7483b2e0fd99b942317a39cc78
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..d373ded
--- /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>