mirror of
https://github.com/fork-maintainers/iceraven-browser
synced 2024-11-15 18:12:54 +00:00
39 lines
1.6 KiB
XML
39 lines
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?><!-- This Source Code Form is subject to the terms of the Mozilla Public
|
|
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<androidx.preference.Preference
|
|
android:key="@string/pref_key_sync_now"
|
|
android:title="@string/preferences_sync_now" />
|
|
|
|
<androidx.preference.EditTextPreference
|
|
android:key="@string/pref_key_sync_device_name"
|
|
android:title="@string/preferences_sync_device_name" />
|
|
|
|
<androidx.preference.Preference
|
|
android:key="@string/pref_key_sign_out"
|
|
android:title="@string/preferences_sign_out" />
|
|
|
|
<androidx.preference.PreferenceCategory
|
|
android:key="@string/preferences_sync_category"
|
|
android:title="@string/preferences_sync_category">
|
|
|
|
<androidx.preference.CheckBoxPreference
|
|
android:defaultValue="true"
|
|
android:key="@string/pref_key_sync_bookmarks"
|
|
android:title="@string/preferences_sync_bookmarks" />
|
|
|
|
<androidx.preference.CheckBoxPreference
|
|
android:defaultValue="true"
|
|
android:key="@string/pref_key_sync_history"
|
|
android:title="@string/preferences_sync_history" />
|
|
|
|
<androidx.preference.CheckBoxPreference
|
|
android:defaultValue="true"
|
|
android:key="@string/pref_key_sync_logins"
|
|
android:title="@string/preferences_sync_logins" />
|
|
</androidx.preference.PreferenceCategory>
|
|
</PreferenceScreen>
|