Files
packages_apps_Evolver/res/xml/spoofing.xml
Abhay Singh Gill f1a38b6225 Evolver: Use Settings switch to allow blocking cert chain
Revert "Evolver: Add prop to allow blocking cert chain"

This reverts commit c043ac18a779079f0e44334e15dae58f9ca98b8d.

Co-authored-by: Pranav Vashi <neobuddy89@gmail.com>
Signed-off-by: Abhay Singh Gill <abhaygill017@gmail.com>
2025-11-09 23:27:38 +09:00

100 lines
4.0 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2019-2025 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">
<!-- Keybox Data -->
<org.evolution.settings.preferences.KeyboxDataPreference
android:key="keybox_data_setting"
android:title="@string/keybox_data_title" />
<!-- Block attestation even with Keybox Data -->
<org.evolution.settings.preferences.SecureSettingSwitchPreference
android:key="gms_cert_chain"
android:title="@string/gms_cert_chain_title"
android:summary="@string/gms_cert_chain_summary"
android:defaultValue="false" />
<!-- GMS spoof -->
<org.evolution.settings.preferences.SystemPropertySwitchPreference
android:key="persist.sys.pp.gms"
android:title="@string/gms_spoof_title"
android:summary="@string/gms_spoof_summary"
android:defaultValue="true" />
<Preference
android:key="show_pif_properties"
android:title="@string/show_pif_properties_title"
android:summary="@string/show_pif_properties_summary"
android:dependency="persist.sys.pp.gms" />
<Preference
android:key="update_pif_json"
android:title="@string/update_pif_json_title"
android:summary="@string/update_pif_json_summary"
android:dependency="persist.sys.pp.gms" />
<Preference
android:key="pif_json_file_preference"
android:title="@string/pif_spoofing_title"
android:summary="@string/pif_spoofing_summary"
android:dependency="persist.sys.pp.gms" />
<!-- Pixel props -->
<org.evolution.settings.preferences.SystemPropertySwitchPreference
android:key="persist.sys.pp"
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.pp.tensor"
android:title="@string/tensor_spoof_title"
android:summary="@string/tensor_spoof_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.pp.qsb"
android:title="@string/spoofing_qsb_title"
android:summary="@string/spoofing_qsb_summary"
android:defaultValue="false" />
<!-- Google Photos -->
<org.evolution.settings.preferences.SystemPropertySwitchPreference
android:key="persist.sys.pp.photos"
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.pp.games"
android:title="@string/gameprops_title"
android:summary="@string/gameprops_summary"
android:defaultValue="true" />
<!-- Snapchat -->
<org.evolution.settings.preferences.SystemPropertySwitchPreference
android:key="persist.sys.pp.snapchat"
android:title="@string/spoofing_snap_title"
android:summary="@string/spoofing_snap_summary"
android:defaultValue="false" />
</PreferenceCategory>
</PreferenceScreen>