* 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>
77 lines
3.2 KiB
XML
77 lines
3.2 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/spoofing_title">
|
|
|
|
<PreferenceCategory
|
|
android:key="spoofing_system_wide_category"
|
|
android:title="@string/spoofing_system_wide_category">
|
|
|
|
<!-- Pixel props -->
|
|
<org.evolution.settings.preferences.SystemPropertySwitchPreference
|
|
android:key="persist.sys.pixelprops"
|
|
android:title="@string/spoofing_pixel_props_title"
|
|
android:summary="@string/spoofing_pixel_props_summary"
|
|
android:defaultValue="true" />
|
|
|
|
<!-- Tensor features -->
|
|
<org.evolution.settings.preferences.SystemPropertySwitchPreference
|
|
android:key="persist.sys.features.tensor"
|
|
android:title="@string/tensor_spoof_title"
|
|
android:summary="@string/tensor_spoof_summary"
|
|
android:defaultValue="false" />
|
|
|
|
<!-- Encryption -->
|
|
<org.evolution.settings.preferences.GlobalSettingSwitchPreference
|
|
android:key="spoofing_storage_encryption"
|
|
android:title="@string/spoofing_storage_encryption_title"
|
|
android:summary="@string/spoofing_storage_encryption_summary"
|
|
android:defaultValue="false" />
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory
|
|
android:key="spoofing_app_specific_category"
|
|
android:title="@string/spoofing_app_specific_category">
|
|
|
|
<!-- Google App -->
|
|
<org.evolution.settings.preferences.SystemPropertySwitchPreference
|
|
android:key="persist.sys.pixelprops.qsb"
|
|
android:title="@string/spoofing_qsb_title"
|
|
android:summary="@string/spoofing_qsb_summary"
|
|
android:defaultValue="false" />
|
|
|
|
<!-- Play Store -->
|
|
<org.evolution.settings.preferences.SystemPropertySwitchPreference
|
|
android:key="persist.sys.pixelprops.vending"
|
|
android:title="@string/spoofing_vending_title"
|
|
android:summary="@string/spoofing_vending_summary"
|
|
android:defaultValue="false" />
|
|
|
|
<!-- Google Photos -->
|
|
<org.evolution.settings.preferences.SystemPropertySwitchPreference
|
|
android:key="persist.sys.pixelprops.gphotos"
|
|
android:title="@string/spoofing_photos_title"
|
|
android:summary="@string/spoofing_photos_summary"
|
|
android:defaultValue="true" />
|
|
|
|
<!-- Games FPS -->
|
|
<org.evolution.settings.preferences.SystemPropertySwitchPreference
|
|
android:key="persist.sys.pixelprops.games"
|
|
android:title="@string/gameprops_title"
|
|
android:summary="@string/gameprops_summary"
|
|
android:defaultValue="true" />
|
|
|
|
<!-- Snapchat -->
|
|
<org.evolution.settings.preferences.SystemPropertySwitchPreference
|
|
android:key="persist.sys.pixelprops.snap"
|
|
android:title="@string/spoofing_snap_title"
|
|
android:summary="@string/spoofing_snap_summary"
|
|
android:defaultValue="false" />
|
|
</PreferenceCategory>
|
|
</PreferenceScreen>
|