aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/xml/preference.xml
blob: d0abd8d1405c4468c130bdb99cdd3c5fce5dc4b4 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
    <PreferenceCategory android:title="Git">
        <EditTextPreference android:title="Server"
            android:key="git_remote_server"
            android:hint="server.com"/>
        <EditTextPreference android:title="Remote location"
            android:key="git_remote_location"
            android:hint="path/to/repository"/>
        <EditTextPreference android:title="Username"
            android:key="git_remote_username"
            android:hint="username"/>
    </PreferenceCategory>

    <PreferenceCategory android:title="Crypto">
        <org.openintents.openpgp.util.OpenPgpListPreference
            android:key="openpgp_provider_list"
            android:title="Select OpenPGP Provider!" />

        <EditTextPreference android:title="Set your OpenPGP account"
            android:hint="mail@somewhere.tld"
            android:key="openpgp_account_name"/>

        <Preference
            android:title="Select OpenPGP Key id"
            android:key="openpgp_key_id"/>
    </PreferenceCategory>

</PreferenceScreen>