* Code is adapted from cutout force full screen * Give authorship * Add "Show system" and "Show overlay" menu based on ManageApplications.java * Query all apps installed by any user and set value for all user Co-authored-by: LuK1337 <priv.luk@gmail.com> Co-authored-by: Tony Mantler <nicoya@google.com> Co-authored-by: jhenrique09 <jhsv09@gmail.com> Co-authored-by: jhonboy121 <alfredmathew05@gmail.com> Co-authored-by: cjh1249131356 <cjh1249131356@gmail.com> Co-authored-by: Adithya R <gh0strider.2k18.reborn@gmail.com> Change-Id: I0c0ea99477e3045ff218b077ec547dba23ca6262 Signed-off-by: Dmitrii <bankersenator@gmail.com>
100 lines
4.4 KiB
XML
100 lines
4.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright (C) 2019-2024 Evolution X
|
|
SPDX-License-Identifier: Apache-2.0
|
|
-->
|
|
|
|
<PreferenceScreen
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:settings="http://schemas.android.com/apk/res/com.android.settings"
|
|
android:title="@string/miscellaneous_title">
|
|
|
|
<PreferenceCategory
|
|
android:key="miscellaneous_spoofing_category"
|
|
android:title="@string/miscellaneous_spoofing_category">
|
|
|
|
<!-- Component spoofing -->
|
|
<Preference
|
|
android:key="spoofing"
|
|
android:title="@string/spoofing_title"
|
|
android:summary="@string/spoofing_summary"
|
|
android:fragment="org.evolution.settings.fragments.miscellaneous.Spoofing" />
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory
|
|
android:key="miscellaneous_developer_options_category"
|
|
android:title="@string/miscellaneous_developer_options_category">
|
|
|
|
<!-- Hide applist -->
|
|
<Preference
|
|
android:key="hide_applist_setting"
|
|
android:title="@string/hide_applist_title"
|
|
android:summary="@string/hide_applist_summary"
|
|
android:fragment="org.evolution.settings.fragments.miscellaneous.HideAppListSettings" />
|
|
|
|
<!-- Smart Pixels -->
|
|
<Preference
|
|
android:key="smart_pixels"
|
|
android:title="@string/smart_pixels_title"
|
|
android:summary="@string/smart_pixels_summary"
|
|
android:fragment="org.evolution.settings.fragments.miscellaneous.SmartPixels" />
|
|
|
|
<!-- USB configuration -->
|
|
<Preference
|
|
android:key="default_usb_configuration"
|
|
android:title="@string/usb_default_config_title"
|
|
android:summary="@string/usb_default_config_summary"
|
|
android:fragment="com.android.settings.connecteddevice.usb.UsbDefaultFragment" />
|
|
|
|
<!-- Hide developer status -->
|
|
<Preference
|
|
android:key="hide_developer_status_settings"
|
|
android:title="@string/hide_developer_status_title"
|
|
android:summary="@string/hide_developer_status_summary"
|
|
android:fragment="com.android.settings.security.HideDeveloperStatusSettings"
|
|
settings:controller="com.android.settings.security.HideDeveloperStatusPreferenceController" />
|
|
|
|
<!-- No storage restrict -->
|
|
<org.evolution.settings.preferences.GlobalSettingSwitchPreference
|
|
android:key="no_storage_restrict"
|
|
android:title="@string/no_storage_restrict_title"
|
|
android:summary="@string/no_storage_restrict_summary"
|
|
android:defaultValue="false" />
|
|
|
|
<!-- Block wallpaper dimming -->
|
|
<org.evolution.settings.preferences.SystemSettingSwitchPreference
|
|
android:key="block_wallpaper_dimming"
|
|
android:title="@string/miscellaneous_block_wallpaper_dimming_title"
|
|
android:summary="@string/miscellaneous_block_wallpaper_dimming_summary"
|
|
android:defaultValue="false" />
|
|
|
|
<!-- Unlimit screenrecord -->
|
|
<org.evolution.settings.preferences.SystemSettingSwitchPreference
|
|
android:key="unlimit_screenrecord"
|
|
android:title="@string/miscellaneous_unlimit_screenrecord_title"
|
|
android:summary="@string/miscellaneous_unlimit_screenrecord_summary"
|
|
android:defaultValue="false" />
|
|
|
|
<!-- Hide screen capture status -->
|
|
<org.evolution.settings.preferences.GlobalSettingSwitchPreference
|
|
android:key="hide_screen_capture_status"
|
|
android:title="@string/hide_screen_capture_status_title"
|
|
android:summary="@string/hide_screen_capture_status_summary"
|
|
android:defaultValue="false" />
|
|
|
|
<!-- Allow application downgrade -->
|
|
<org.evolution.settings.preferences.GlobalSettingSwitchPreference
|
|
android:key="pm_downgrade_allowed"
|
|
android:title="@string/miscellaneous_app_downgrade_title"
|
|
android:summary="@string/miscellaneous_app_downgrade_summary"
|
|
android:defaultValue="false" />
|
|
|
|
<!-- Ignore window secure flags -->
|
|
<org.evolution.settings.preferences.GlobalSettingSwitchPreference
|
|
android:key="window_ignore_secure"
|
|
android:title="@string/miscellaneous_ignore_window_secure_title"
|
|
android:summary="@string/miscellaneous_ignore_window_secure_summary"
|
|
android:defaultValue="false" />
|
|
</PreferenceCategory>
|
|
</PreferenceScreen>
|