summaryrefslogtreecommitdiff
path: root/main/src/main/res/xml/app_restrictions.xml
blob: bd053388f0132eaacd8c112ba96a118fcd449a2c (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?xml version="1.0" encoding="utf-8"?>
<!--
  ~ Copyright (c) 2012-2018 Arne Schwabe
  ~ Distributed under the GNU GPL v2 with additional terms. For full terms see the file doc/LICENSE.txt
  -->

<restrictions xmlns:tools="http://schemas.android.com/tools" xmlns:android="http://schemas.android.com/apk/res/android"
              tools:targetApi="lollipop">

    <restriction

            android:key="version"
            android:title="@string/apprest_ver"
            android:restrictionType="string"
            android:defaultValue="1"
    />

    <restriction
            android:key="vpn_configuration_list"
            android:title="@string/apprest_vpnlist"
            android:restrictionType="bundle_array">

        <restriction
                android:title="@string/apprest_vpnconf"
                android:key="vpn_configuration"
                android:restrictionType="bundle">

            <restriction
                    android:key="uuid"
                    android:restrictionType="string"
                    android:description="@string/apprest_uuid_desc"
                    android:title="@string/apprest_uuid"
            />

            <restriction
                    android:key="name"
                    android:restrictionType="string"
                    android:title="@string/apprest_name"
                    android:description="@string/apprest_name_desc"

            />

            <restriction
                    android:key="ovpn"
                    android:title="@string/apprest_ovpn"
                    android:description="@string/apprest_ovpn_desc"
                    android:restrictionType="string"/>

            <!--
            <restriction
                    android:key="ovpn_list"
                    android:title="@string/apprest_ovpn_list"
                    android:describition="@string/apprest_ovpn_list_esc"
                    android:restrictionType="bundle_array">
                <restriction
                        android:key="ovpn_configline"
                        android:title="@string/apprest_ovpn"
                        android:description="@string/apprest_ovpn_desc"
                        android:restrictionType="string"/>
            </restriction>
            -->
        </restriction>
    </restriction>
    <restriction

            android:key="defaultprofile"
            android:title="@string/apprest_defprof"
            android:restrictionType="string"
            android:defaultValue=""
            />
</restrictions>