57 lines
2.4 KiB
XML
57 lines
2.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">
|
|
|
|
<!-- 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" />
|
|
|
|
<!-- 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>
|