summaryrefslogtreecommitdiff
path: root/vpndialogxposed/src/main/AndroidManifest.xml
blob: 2a58277d26392f837bfc4514d97c90f803625c06 (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"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
          package="de.blinkt.vpndialogxposed" >

    <uses-sdk
            android:minSdkVersion="14"
            android:targetSdkVersion="17"/>

    <application
            android:allowBackup="true"
            android:icon="@drawable/ic_launcher"
            android:label="@string/app_name"
            >

        <activity
                android:name=".AllowedVPNsChooser">
            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>

                <category android:name="android.intent.category.BROWSABLE"/>
                <category android:name="android.intent.category.LAUNCHER"/>
            </intent-filter>
        </activity>

        <meta-data
                android:value="true"
                android:name="xposedmodule"/>
        <meta-data
                android:value="2.0*"
                android:name="xposedminversion"/>
        <meta-data
                android:value="Allows OpenVPN for Android to establish a VPN connection without confirmation dialog"
                android:name="xposeddescription"/>
    </application>

</manifest>