mirror of
https://github.com/TeamNewPipe/NewPipe
synced 2025-01-04 06:20:32 +00:00
e93a2850d6
- remove duplicated string (name) and avoid potential duplicate (autoplay_never_description -> Never, autoplay_always_description -> Always because they are just "Always" or "Never"). Fixes #4268 - leakCanary string removed (fixes #4233)
29 lines
1.1 KiB
XML
29 lines
1.1 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"
|
|
android:key="general_preferences"
|
|
android:title="@string/settings_category_debug_title">
|
|
|
|
<SwitchPreferenceCompat
|
|
app:iconSpaceReserved="false"
|
|
android:defaultValue="false"
|
|
android:key="@string/allow_heap_dumping_key"
|
|
android:title="@string/leakcanary"
|
|
android:summary="@string/enable_leak_canary_summary"/>
|
|
|
|
<SwitchPreferenceCompat
|
|
app:iconSpaceReserved="false"
|
|
android:defaultValue="false"
|
|
android:key="@string/allow_disposed_exceptions_key"
|
|
android:title="@string/enable_disposed_exceptions_title"
|
|
android:summary="@string/enable_disposed_exceptions_summary"/>
|
|
|
|
<SwitchPreferenceCompat
|
|
app:iconSpaceReserved="false"
|
|
android:defaultValue="false"
|
|
android:key="@string/show_original_time_ago_key"
|
|
android:title="@string/show_original_time_ago_title"
|
|
android:summary="@string/show_original_time_ago_summary"/>
|
|
</PreferenceScreen>
|