mirror of
https://github.com/d4rken-org/capod.git
synced 2026-09-14 18:26:11 -04:00
36 lines
1.7 KiB
XML
36 lines
1.7 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">
|
|
<eu.darken.capod.common.preferences.IntentPreference
|
|
android:icon="@drawable/ic_discord_onsurface"
|
|
android:summary="@string/discord_description"
|
|
android:title="@string/discord_label">
|
|
<intent
|
|
android:action="android.intent.action.VIEW"
|
|
android:data="https://discord.gg/rrxxng35jq" />
|
|
</eu.darken.capod.common.preferences.IntentPreference>
|
|
<eu.darken.capod.common.preferences.IntentPreference
|
|
android:icon="@drawable/ic_github_onsurface"
|
|
android:summary="@string/issue_tracker_description"
|
|
android:title="@string/issue_tracker_label">
|
|
<intent
|
|
android:action="android.intent.action.VIEW"
|
|
android:data="https://github.com/d4rken-org/capod/issues" />
|
|
</eu.darken.capod.common.preferences.IntentPreference>
|
|
|
|
<PreferenceCategory app:title="@string/settings_category_other_label">
|
|
<Preference
|
|
android:icon="@drawable/ic_id_onsurface"
|
|
android:key="support.installid"
|
|
android:summary="@string/settings_support_installid_desc"
|
|
android:title="@string/settings_support_installid_label"
|
|
app:isPreferenceVisible="false" />
|
|
|
|
<CheckBoxPreference
|
|
android:icon="@drawable/ic_spider_thread_onsurface"
|
|
android:key="debug.bugreport.automatic.enabled"
|
|
app:isPreferenceVisible="false"
|
|
android:summary="@string/settings_debug_autoreports_description"
|
|
android:title="@string/settings_debug_autoreports_label" />
|
|
</PreferenceCategory>
|
|
</PreferenceScreen> |