-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathpref_misc.xml
47 lines (41 loc) · 2.08 KB
/
pref_misc.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app2="http://schemas.android.com/apk/res-auto">
<net.kdt.pojavlaunch.prefs.BackButtonPreference/>
<PreferenceCategory android:title="@string/preference_category_miscellaneous">
<SwitchPreference
android:defaultValue="true"
android:icon="@drawable/ic_setting_hash_verification"
android:key="checkLibraries"
android:summary="@string/mcl_setting_check_libraries_subtitle"
android:title="@string/mcl_setting_check_libraries" />
<SwitchPreference
android:defaultValue="false"
android:key="arc_capes"
android:summary="@string/arc_capes_desc"
android:title="@string/arc_capes_title" />
<androidx.preference.ListPreference
android:defaultValue="default"
android:key="downloadSource"
android:entries="@array/download_source_names"
android:entryValues="@array/download_source_values"
android:title="@string/preference_download_source_title"
android:summary="@string/preference_download_source_description"
app2:useSimpleSummaryProvider="true"/>
<SwitchPreference
android:defaultValue="false"
android:key="downloadRollback"
android:title="@string/preference_download_rollback_title"
android:summary="@string/preference_download_rollback_description"/>
<SwitchPreference
android:defaultValue="true"
android:key="verifyManifest"
android:title="@string/preference_verify_manifest_title"
android:summary="@string/preference_verify_manifest_description"/>
<SwitchPreference
android:defaultValue="false"
android:key="zinkPreferSystemDriver"
android:summary="@string/preference_vulkan_driver_system_description"
android:title="@string/preference_vulkan_driver_system_title"/>
</PreferenceCategory>
</PreferenceScreen>