mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2025-01-27 10:07:32 +01:00
fe73e9fec1
- open app preferences screen from device card menu - open auth preferences screen from DiscoveryActivity - add explanation about Auth key, make it open wiki link, fix #2240 - add New protocol checkbox and explanation when first pairing Miband 6
16 lines
579 B
XML
16 lines
579 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<Preference
|
|
android:icon="@drawable/ic_open_in_browser"
|
|
android:persistent="false"
|
|
android:key="authkey_explanation"
|
|
android:summary="@string/pref_explanation_authkey" >
|
|
<intent
|
|
android:action="android.intent.action.VIEW"
|
|
android:data="https://codeberg.org/Freeyourgadget/Gadgetbridge/wiki/Pairing"
|
|
/>
|
|
</Preference>
|
|
|
|
</androidx.preference.PreferenceScreen>
|