mirror of
https://github.com/aniyomiorg/aniyomi.git
synced 2025-01-23 20:44:08 +03:00
94ee4e7fb5
* Tracking tab with anilist support * Rename MangaSync to Track * Rename variables and methods to track * Kitsu implementation * Variables refactoring * Travis fix?
33 lines
No EOL
1.2 KiB
XML
33 lines
No EOL
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
<PreferenceScreen
|
|
android:icon="@drawable/ic_sync_black_24dp"
|
|
android:key="tracking_screen"
|
|
android:persistent="false"
|
|
android:title="@string/pref_category_tracking"
|
|
app:asp_tintEnabled="true">
|
|
|
|
<SwitchPreference
|
|
android:key="@string/pref_auto_update_manga_sync_key"
|
|
android:title="@string/pref_auto_update_manga_sync"
|
|
android:defaultValue="true"
|
|
app:showText="false"/>
|
|
|
|
<SwitchPreference
|
|
android:key="@string/pref_ask_update_manga_sync_key"
|
|
android:title="@string/pref_ask_update_manga_sync"
|
|
android:defaultValue="false"
|
|
android:dependency="@string/pref_auto_update_manga_sync_key"
|
|
app:showText="false"/>
|
|
|
|
<PreferenceCategory
|
|
android:key="@string/pref_category_tracking_accounts_key"
|
|
android:title="@string/services"
|
|
android:persistent="false"
|
|
app:showText="false"/>
|
|
|
|
</PreferenceScreen>
|
|
|
|
</PreferenceScreen> |