mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-13 10:31:03 +01:00
9ad7e210b7
- add support for ANC-light mode - handle multiple GBDeviceEvents - add fake fw and hw versions to make DBHelper happy - fix battery charge detection logic - extract some strings to resources
17 lines
778 B
XML
17 lines
778 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<SwitchPreference
|
|
android:defaultValue="true"
|
|
android:icon="@drawable/ic_extension"
|
|
android:key="pref_nothing_inear_detection"
|
|
android:summary="@string/nothing_prefs_inear_summary"
|
|
android:title="@string/nothing_prefs_inear_title" />
|
|
<ListPreference
|
|
android:icon="@drawable/ic_extension"
|
|
android:entryValues="@array/nothing_ear1_audio_mode"
|
|
android:entries="@array/nothing_ear1_audio_mode"
|
|
android:key="pref_nothing_audiomode"
|
|
android:summary="%s"
|
|
android:title="@string/nothing_prefs_audiomode_title" />
|
|
</androidx.preference.PreferenceScreen>
|