aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/xml/preference.xml
blob: d52570d5c49bea9bc36f6989ae93e2ac13005410 (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
30
31
32
33
34
35
36
<?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"
            android:inputType="textUri"/>
        <EditTextPreference android:title="Remote location"
            android:key="git_remote_location"
            android:hint="path/to/repository"
            android:inputType="textUri"/>
        <EditTextPreference android:title="Username"
            android:key="git_remote_username"
            android:hint="username"
            android:inputType="textPersonName"/>
        <Preference
            android:title="SSH Key"
            android:key="ssh_key"/>
    </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"
            android:inputType="textEmailAddress"/>

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

</PreferenceScreen>