mirror of https://github.com/beemdevelopment/Aegis
Finish updating to API 28
Also temporarily disable the preference fix librarypull/120/head
parent
2152e2617f
commit
3435a4077e
@ -1,57 +1,70 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
<androidx.preference.PreferenceScreen
|
||||||
android:title="@string/settings">
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
|
android:title="@string/settings">
|
||||||
|
|
||||||
<PreferenceCategory
|
<PreferenceCategory
|
||||||
android:title="Appearance">
|
android:title="Appearance"
|
||||||
<android.support.v7.preference.SwitchPreferenceCompat
|
app:iconSpaceReserved="false">
|
||||||
|
<androidx.preference.SwitchPreferenceCompat
|
||||||
android:defaultValue="false"
|
android:defaultValue="false"
|
||||||
android:key="pref_dark_mode"
|
android:key="pref_dark_mode"
|
||||||
android:title="@string/pref_dark_mode_title"
|
android:title="@string/pref_dark_mode_title"
|
||||||
android:summary="@string/pref_dark_mode_summary"/>
|
android:summary="@string/pref_dark_mode_summary"
|
||||||
|
app:iconSpaceReserved="false"/>
|
||||||
|
|
||||||
<android.support.v7.preference.SwitchPreferenceCompat
|
<androidx.preference.SwitchPreferenceCompat
|
||||||
android:defaultValue="false"
|
android:defaultValue="false"
|
||||||
android:key="pref_account_name"
|
android:key="pref_account_name"
|
||||||
android:title="@string/pref_account_name_title"
|
android:title="@string/pref_account_name_title"
|
||||||
android:summary="@string/pref_account_name_summary"/>
|
android:summary="@string/pref_account_name_summary"
|
||||||
|
app:iconSpaceReserved="false"/>
|
||||||
</PreferenceCategory>
|
</PreferenceCategory>
|
||||||
|
|
||||||
<PreferenceCategory
|
<PreferenceCategory
|
||||||
android:title="Security">
|
android:title="Security"
|
||||||
<android.support.v7.preference.SwitchPreferenceCompat
|
app:iconSpaceReserved="false">
|
||||||
|
<androidx.preference.SwitchPreferenceCompat
|
||||||
android:defaultValue="true"
|
android:defaultValue="true"
|
||||||
android:key="pref_secure_screen"
|
android:key="pref_secure_screen"
|
||||||
android:title="@string/pref_secure_screen_title"
|
android:title="@string/pref_secure_screen_title"
|
||||||
android:summary="@string/pref_secure_screen_summary"/>
|
android:summary="@string/pref_secure_screen_summary"
|
||||||
|
app:iconSpaceReserved="false"/>
|
||||||
<!--<EditTextPreference
|
<!--<EditTextPreference
|
||||||
android:key="pref_timeout"
|
android:key="pref_timeout"
|
||||||
android:title="@string/pref_timeout_title"
|
android:title="@string/pref_timeout_title"
|
||||||
android:summary="@string/pref_timeout_summary"
|
android:summary="@string/pref_timeout_summary"
|
||||||
android:inputType="number"
|
android:inputType="number"
|
||||||
android:defaultValue="30"
|
android:defaultValue="30"
|
||||||
android:dialogTitle="Set number of seconds of inactivity before Aegis locks the database"/>-->
|
android:dialogTitle="Set number of seconds of inactivity before Aegis locks the database"
|
||||||
|
app:iconSpaceReserved="false"/>-->
|
||||||
<me.impy.aegis.ui.preferences.SwitchPreference
|
<me.impy.aegis.ui.preferences.SwitchPreference
|
||||||
android:key="pref_encryption"
|
android:key="pref_encryption"
|
||||||
android:title="@string/pref_encryption_title"
|
android:title="@string/pref_encryption_title"
|
||||||
android:summary="@string/pref_encryption_summary"
|
android:summary="@string/pref_encryption_summary"
|
||||||
android:persistent="false"/>
|
android:persistent="false"
|
||||||
|
app:iconSpaceReserved="false"/>
|
||||||
<Preference
|
<Preference
|
||||||
android:key="pref_slots"
|
android:key="pref_slots"
|
||||||
android:title="@string/pref_slots_title"
|
android:title="@string/pref_slots_title"
|
||||||
android:summary="@string/pref_slots_summary"/>
|
android:summary="@string/pref_slots_summary"
|
||||||
|
app:iconSpaceReserved="false"/>
|
||||||
</PreferenceCategory>
|
</PreferenceCategory>
|
||||||
|
|
||||||
<PreferenceCategory
|
<PreferenceCategory
|
||||||
android:title="Tools">
|
android:title="Tools"
|
||||||
|
app:iconSpaceReserved="false">
|
||||||
<Preference
|
<Preference
|
||||||
android:key="pref_import"
|
android:key="pref_import"
|
||||||
android:title="@string/pref_import_title"
|
android:title="@string/pref_import_title"
|
||||||
android:summary="@string/pref_import_summary"/>
|
android:summary="@string/pref_import_summary"
|
||||||
|
app:iconSpaceReserved="false"/>
|
||||||
<Preference
|
<Preference
|
||||||
android:key="pref_export"
|
android:key="pref_export"
|
||||||
android:title="@string/pref_export_title"
|
android:title="@string/pref_export_title"
|
||||||
android:summary="@string/pref_export_summary"/>
|
android:summary="@string/pref_export_summary"
|
||||||
|
app:iconSpaceReserved="false"/>
|
||||||
</PreferenceCategory>
|
</PreferenceCategory>
|
||||||
|
|
||||||
</androidx.preference.PreferenceScreen>
|
</androidx.preference.PreferenceScreen>
|
||||||
|
Loading…
Reference in New Issue