Simon Shields | 9b5063f | 2016-03-18 23:12:15 +1100 | [diff] [blame^] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 | package="com.cyanogenmod.settings.device" |
| 4 | android:sharedUserId="android.uid.system" > |
| 5 | |
| 6 | <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> |
| 7 | <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" /> |
| 8 | |
| 9 | <application android:label="@string/app_name"> |
| 10 | <activity |
| 11 | android:name="com.cyanogenmod.settings.device.DisplaySettings" |
| 12 | android:launchMode="singleTop" |
| 13 | android:icon="@drawable/ic_settings_advanced_display" |
| 14 | android:hardwareAccelerated="true" |
| 15 | android:configChanges="orientation|keyboardHidden|screenSize" |
| 16 | android:label="@string/app_name" |
| 17 | android:theme="@style/Theme.Main" |
| 18 | android:excludeFromRecents="true" > |
| 19 | <intent-filter> |
| 20 | <action android:name="com.android.settings.action.EXTRA_SETTINGS" /> |
| 21 | </intent-filter> |
| 22 | <meta-data |
| 23 | android:name="com.android.settings.icon" |
| 24 | android:resource="@drawable/ic_settings_advanced_display" /> |
| 25 | <meta-data |
| 26 | android:name="com.android.settings.category" |
| 27 | android:value="com.android.settings.category.device" /> |
| 28 | </activity> |
| 29 | |
| 30 | <receiver android:name=".Startup"> |
| 31 | <intent-filter android:priority="100"> |
| 32 | <action android:name="android.intent.action.BOOT_COMPLETED" /> |
| 33 | </intent-filter> |
| 34 | </receiver> |
| 35 | |
| 36 | <activity android:name=".ScreenFragmentActivity" /> |
| 37 | |
| 38 | </application> |
| 39 | </manifest> |