summaryrefslogtreecommitdiffstats
path: root/GNexusParts/AndroidManifest.xml
diff options
context:
space:
mode:
authorKalimochoAz <calimochoazucarado@gmail.com>2012-01-27 10:14:51 +0100
committerBrint E. Kriebel <bkriebel@vmware.com>2012-07-11 11:41:12 -0600
commit09cd945539e9c69e804551ee854fcf4ed55937b2 (patch)
tree8c4ef9cb98167726648c10fcf161b5e71d5cc10d /GNexusParts/AndroidManifest.xml
parent8d1e22e61282c245189c5b70e1ec403b429b9a68 (diff)
downloaddevice_samsung_tuna-09cd945539e9c69e804551ee854fcf4ed55937b2.zip
device_samsung_tuna-09cd945539e9c69e804551ee854fcf4ed55937b2.tar.gz
device_samsung_tuna-09cd945539e9c69e804551ee854fcf4ed55937b2.tar.bz2
Added galaxy nexus specific settings
First addition is gamma color hack Change-Id: I199dc40334b4219bb4d3209360faeef2d66b6da1
Diffstat (limited to 'GNexusParts/AndroidManifest.xml')
-rw-r--r--GNexusParts/AndroidManifest.xml32
1 files changed, 32 insertions, 0 deletions
diff --git a/GNexusParts/AndroidManifest.xml b/GNexusParts/AndroidManifest.xml
new file mode 100644
index 0000000..b736787
--- /dev/null
+++ b/GNexusParts/AndroidManifest.xml
@@ -0,0 +1,32 @@
+<?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" />
+ <category android:name="android.intent.category.LAUNCHER" />
+ </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=".GeneralFragmentActivity" />
+ <activity android:name=".DisplayFragmentActivity" />
+ <activity android:name=".SoundFragmentActivity" />
+ </application>
+
+</manifest> \ No newline at end of file