Feature: yt/KSCOPE-23 Change-Id: Ibdd7406a3e59373813c9a98233e6c04b8554d618 Signed-off-by: LibXZR <i@xzr.moe> Signed-off-by: AnierinB <anierin@evolution-x.org>
43 lines
1.7 KiB
XML
43 lines
1.7 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">
|
|
|
|
<!-- 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>
|