01c7ed697f
This partially reverts commit 99d12c6a90
,
we want to reuse some of it. The implementation appears to be fully
compatible with smdk4412's, so let's make this a common thing at
some point
Change-Id: I080484ad010f881a22a4486a6c082d0fbc17a529
34 lines
1.4 KiB
XML
34 lines
1.4 KiB
XML
<?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.DisplaySettings"
|
|
android:launchMode="singleTop"
|
|
android:icon="@drawable/ic_launcher_cmdevicesettings"
|
|
android:hardwareAccelerated="true"
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:label="@string/app_name"
|
|
android:excludeFromRecents="true" >
|
|
<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" />
|
|
|
|
</application>
|
|
</manifest>
|