mirror of
https://github.com/team-infusion-developers/android_hardware_samsung.git
synced 2024-10-31 23:37:35 +00:00
6deaa3b648
* Apply the default Oreo theme and inherit the layouts from Google for the Settings app, in order to keep UI consistency. * Get rid of SettingsDrawerActivity as it no longer fits in. * Add required appcompat and preference support libraries. * Integrate into display settings category using IA. Change-Id: I8438e0ebec27085df2be4668f8f7170d2010fb20
32 lines
1.3 KiB
XML
32 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="org.lineageos.settings.device"
|
|
android:sharedUserId="android.uid.system">
|
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
|
|
|
<application
|
|
android:label="@string/app_name"
|
|
android:theme="@style/Theme.Main">
|
|
<receiver android:name="org.lineageos.settings.device.BootCompletedReceiver">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</receiver>
|
|
|
|
<activity
|
|
android:name=".AdvancedDisplayActivity"
|
|
android:label="@string/app_name">
|
|
<intent-filter>
|
|
<action android:name="com.android.settings.action.EXTRA_SETTINGS" />
|
|
</intent-filter>
|
|
<meta-data
|
|
android:name="com.android.settings.category"
|
|
android:value="com.android.settings.category.ia.display" />
|
|
<meta-data
|
|
android:name="com.android.settings.summary"
|
|
android:value="@string/summary_empty" />
|
|
</activity>
|
|
</application>
|
|
</manifest>
|