* Add switch to spoof QSB * Bring back old Games spoof method * Drop PIF * Enable Photos spoof by default * Restart dialog upon toggle * Hide Pixel props switch on pixel 8+ devices * Hide tensor switch on tensor devices Co-authored-by: minaripenguin <minaripenguin@users.noreply.github.com> Co-authored-by: Alvin Francis <nivlafx@gmail.com> Co-authored-by: Gustavo Mendes <gusttavo.me@outlook.com> Signed-off-by: AnierinB <anierin@evolution-x.org>
24 lines
816 B
XML
24 lines
816 B
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>
|
|
</PreferenceScreen>
|