blob: 849be86a76fd97d5696c6c9dd910a70be7b71705 (
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
|
<?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"/>
<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"/>
<Preference
android:title="Select OpenPGP Key id"
android:key="openpgp_key_id"/>
</PreferenceCategory>
</PreferenceScreen>
|