diff options
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r-- | app/src/main/AndroidManifest.xml | 108 |
1 files changed, 53 insertions, 55 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 29708b6..c86ec8f 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml | |||
@@ -19,70 +19,68 @@ | |||
19 | --> | 19 | --> |
20 | 20 | ||
21 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" | 21 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
22 | xmlns:tools="http://schemas.android.com/tools" | 22 | xmlns:tools="http://schemas.android.com/tools" |
23 | package="org.pacien.tincapp"> | 23 | package="org.pacien.tincapp"> |
24 | 24 | ||
25 | <uses-permission android:name="android.permission.INTERNET"/> | 25 | <uses-permission android:name="android.permission.INTERNET" /> |
26 | 26 | ||
27 | <!-- workaround for broken file permissions on some Android ROMs --> | 27 | <!-- workaround for broken file permissions on some Android ROMs --> |
28 | <uses-permission-sdk-23 android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> | 28 | <uses-permission-sdk-23 android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
29 | 29 | ||
30 | <application | 30 | <application |
31 | android:name="org.pacien.tincapp.context.App" | 31 | android:name="org.pacien.tincapp.context.App" |
32 | android:allowBackup="false" | 32 | android:allowBackup="false" |
33 | android:icon="@mipmap/ic_launcher" | 33 | android:icon="@mipmap/ic_launcher" |
34 | android:label="@string/app_name" | 34 | android:label="@string/app_name" |
35 | android:supportsRtl="true" | 35 | android:supportsRtl="true" |
36 | android:theme="@style/AppTheme" | 36 | android:theme="@style/AppTheme" |
37 | tools:ignore="GoogleAppIndexingWarning"> | 37 | tools:ignore="GoogleAppIndexingWarning"> |
38 | 38 | ||
39 | <uses-library | 39 | <uses-library |
40 | android:name="org.apache.http.legacy" | 40 | android:name="org.apache.http.legacy" |
41 | android:required="false"/> | 41 | android:required="false" /> |
42 | 42 | ||
43 | <activity | 43 | <activity |
44 | android:name=".activities.start.StartActivity" | 44 | android:name=".activities.start.StartActivity" |
45 | android:configChanges="orientation|screenSize" | 45 | android:configChanges="orientation|screenSize" |
46 | android:label="@string/app_name"> | 46 | android:label="@string/app_name"> |
47 | <intent-filter> | 47 | <intent-filter> |
48 | <action android:name="android.intent.action.MAIN"/> | 48 | <action android:name="android.intent.action.MAIN" /> |
49 | <category android:name="android.intent.category.LAUNCHER"/> | 49 | <category android:name="android.intent.category.LAUNCHER" /> |
50 | </intent-filter> | 50 | </intent-filter> |
51 | <intent-filter> | 51 | <intent-filter> |
52 | <action android:name="org.pacien.tincapp.intent.action.CONNECT"/> | 52 | <action android:name="org.pacien.tincapp.intent.action.CONNECT" /> |
53 | <data android:scheme="tinc"/> | 53 | <data android:scheme="tinc" /> |
54 | <category android:name="android.intent.category.DEFAULT"/> | 54 | <category android:name="android.intent.category.DEFAULT" /> |
55 | </intent-filter> | 55 | </intent-filter> |
56 | </activity> | 56 | </activity> |
57 | 57 | ||
58 | <activity | 58 | <activity |
59 | android:name=".activities.configure.ConfigureActivity" | 59 | android:name=".activities.configure.ConfigureActivity" |
60 | android:configChanges="orientation|screenSize" | 60 | android:configChanges="orientation|screenSize" |
61 | android:parentActivityName=".activities.start.StartActivity"> | 61 | android:parentActivityName=".activities.start.StartActivity" /> |
62 | </activity> | ||
63 | 62 | ||
64 | <activity | 63 | <activity |
65 | android:name=".activities.status.StatusActivity" | 64 | android:name=".activities.status.StatusActivity" |
66 | android:configChanges="orientation|screenSize"> | 65 | android:configChanges="orientation|screenSize"> |
67 | <intent-filter> | 66 | <intent-filter> |
68 | <action android:name="org.pacien.tincapp.intent.action.DISCONNECT"/> | 67 | <action android:name="org.pacien.tincapp.intent.action.DISCONNECT" /> |
69 | <category android:name="android.intent.category.DEFAULT"/> | 68 | <category android:name="android.intent.category.DEFAULT" /> |
70 | </intent-filter> | 69 | </intent-filter> |
71 | </activity> | 70 | </activity> |
72 | 71 | ||
73 | <activity | 72 | <activity |
74 | android:name=".activities.viewlog.ViewLogActivity" | 73 | android:name=".activities.viewlog.ViewLogActivity" |
75 | android:configChanges="orientation|screenSize"> | 74 | android:configChanges="orientation|screenSize" /> |
76 | </activity> | ||
77 | 75 | ||
78 | <service | 76 | <service |
79 | android:name="org.pacien.tincapp.service.TincVpnService" | 77 | android:name="org.pacien.tincapp.service.TincVpnService" |
80 | android:permission="android.permission.BIND_VPN_SERVICE"> | 78 | android:permission="android.permission.BIND_VPN_SERVICE"> |
81 | <intent-filter> | 79 | <intent-filter> |
82 | <action android:name="android.net.VpnService"/> | 80 | <action android:name="android.net.VpnService" /> |
83 | </intent-filter> | 81 | </intent-filter> |
84 | </service> | 82 | </service> |
85 | 83 | ||
86 | </application> | 84 | </application> |
87 | 85 | ||
88 | </manifest> | 86 | </manifest> |