summaryrefslogtreecommitdiffstats
path: root/DeviceSettings/AndroidManifest.xml
diff options
context:
space:
mode:
authorDaniel Hillenbrand <codeworkx@cyanogenmod.org>2013-06-09 10:33:37 +0200
committerDaniel Hillenbrand <codeworkx@cyanogenmod.org>2013-06-09 10:33:37 +0200
commit140ffc1ca32edffd402771e4117b6f0f7b7d5c2b (patch)
treee80d70ff984fe9e45036e759ec42201be8fa7bb8 /DeviceSettings/AndroidManifest.xml
parentb57bd594756a62d2578a5485aa099cb24ed8360a (diff)
downloaddevice_samsung_n7000-140ffc1ca32edffd402771e4117b6f0f7b7d5c2b.zip
device_samsung_n7000-140ffc1ca32edffd402771e4117b6f0f7b7d5c2b.tar.gz
device_samsung_n7000-140ffc1ca32edffd402771e4117b6f0f7b7d5c2b.tar.bz2
n7000: move device settings to common
Change-Id: If071c9a287aa1e2e27b68abc56afc63138edf855
Diffstat (limited to 'DeviceSettings/AndroidManifest.xml')
-rw-r--r--DeviceSettings/AndroidManifest.xml30
1 files changed, 0 insertions, 30 deletions
diff --git a/DeviceSettings/AndroidManifest.xml b/DeviceSettings/AndroidManifest.xml
deleted file mode 100644
index f117bb2..0000000
--- a/DeviceSettings/AndroidManifest.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-<?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=".ScreenFragmentActivity" />
- <activity android:name=".RadioFragmentActivity" />
-
- </application>
-</manifest>