aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r--app/src/main/AndroidManifest.xml35
1 files changed, 35 insertions, 0 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
new file mode 100644
index 0000000..2822d37
--- /dev/null
+++ b/app/src/main/AndroidManifest.xml
@@ -0,0 +1,35 @@
1<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="org.pacien.tincapp">
4
5 <uses-permission android:name="android.permission.INTERNET"/>
6 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
7
8 <application
9 android:allowBackup="false"
10 android:icon="@mipmap/ic_launcher"
11 android:label="@string/app_label"
12 android:supportsRtl="true"
13 android:theme="@style/AppTheme">
14
15 <activity
16 android:name=".activities.StartActivity"
17 android:label="@string/app_label"
18 android:theme="@style/AppTheme.NoActionBar">
19 <intent-filter>
20 <action android:name="android.intent.action.MAIN"/>
21 <category android:name="android.intent.category.LAUNCHER"/>
22 </intent-filter>
23 </activity>
24
25 <service
26 android:name="org.pacien.tincapp.service.TincVpnService"
27 android:permission="android.permission.BIND_VPN_SERVICE">
28 <intent-filter>
29 <action android:name="android.net.VpnService"/>
30 </intent-filter>
31 </service>
32
33 </application>
34
35</manifest>