Evolver: Add window ignore secure feature [2/2]

Feature: yt/KSCOPE-23
Change-Id: Ibdd7406a3e59373813c9a98233e6c04b8554d618
Signed-off-by: LibXZR <i@xzr.moe>
Signed-off-by: AnierinB <anierin@evolution-x.org>
This commit is contained in:
LibXZR
2022-04-23 20:02:33 +09:00
committed by Joey Huab
parent a748af6010
commit b8d9cd627d
2 changed files with 9 additions and 0 deletions

View File

@@ -93,6 +93,8 @@
<string name="miscellaneous_developer_options_category">Developer options</string>
<string name="miscellaneous_app_downgrade_title">Allow application downgrade</string>
<string name="miscellaneous_app_downgrade_summary">Allow downgrading system applications, which may result in crashes and data loss</string>
<string name="miscellaneous_ignore_window_secure_title">Ignore window secure flags</string>
<string name="miscellaneous_ignore_window_secure_summary">Remove restrictions on screenshots and screen recordings for all applications, potentially risking privacy leaks</string>
<!-- Miscellaneous/Spoofing -->
<string name="spoofing_title">Component spoofing</string>

View File

@@ -31,5 +31,12 @@
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>