diff options
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r-- | app/src/main/AndroidManifest.xml | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index c98555f..662af62 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml | |||
@@ -2,7 +2,7 @@ | |||
2 | 2 | ||
3 | <!-- | 3 | <!-- |
4 | * Tinc App, an Android binding and user interface for the tinc mesh VPN daemon | 4 | * Tinc App, an Android binding and user interface for the tinc mesh VPN daemon |
5 | * Copyright (C) 2017-2020 Pacien TRAN-GIRARD | 5 | * Copyright (C) 2017-2023 Pacien TRAN-GIRARD |
6 | * | 6 | * |
7 | * This program is free software: you can redistribute it and/or modify | 7 | * This program is free software: you can redistribute it and/or modify |
8 | * it under the terms of the GNU General Public License as published by | 8 | * it under the terms of the GNU General Public License as published by |
@@ -46,7 +46,8 @@ | |||
46 | <activity | 46 | <activity |
47 | android:name=".activities.start.StartActivity" | 47 | android:name=".activities.start.StartActivity" |
48 | android:configChanges="orientation|screenSize" | 48 | android:configChanges="orientation|screenSize" |
49 | android:label="@string/app_name"> | 49 | android:label="@string/app_name" |
50 | android:exported="true"> | ||
50 | <intent-filter> | 51 | <intent-filter> |
51 | <action android:name="android.intent.action.MAIN" /> | 52 | <action android:name="android.intent.action.MAIN" /> |
52 | <category android:name="android.intent.category.LAUNCHER" /> | 53 | <category android:name="android.intent.category.LAUNCHER" /> |
@@ -65,7 +66,8 @@ | |||
65 | 66 | ||
66 | <activity | 67 | <activity |
67 | android:name=".activities.status.StatusActivity" | 68 | android:name=".activities.status.StatusActivity" |
68 | android:configChanges="orientation|screenSize"> | 69 | android:configChanges="orientation|screenSize" |
70 | android:exported="true"> | ||
69 | <intent-filter> | 71 | <intent-filter> |
70 | <action android:name="org.pacien.tincapp.intent.action.DISCONNECT" /> | 72 | <action android:name="org.pacien.tincapp.intent.action.DISCONNECT" /> |
71 | <category android:name="android.intent.category.DEFAULT" /> | 73 | <category android:name="android.intent.category.DEFAULT" /> |
@@ -78,7 +80,8 @@ | |||
78 | 80 | ||
79 | <service | 81 | <service |
80 | android:name="org.pacien.tincapp.service.TincVpnService" | 82 | android:name="org.pacien.tincapp.service.TincVpnService" |
81 | android:permission="android.permission.BIND_VPN_SERVICE"> | 83 | android:permission="android.permission.BIND_VPN_SERVICE" |
84 | android:exported="true"> | ||
82 | <intent-filter> | 85 | <intent-filter> |
83 | <action android:name="android.net.VpnService" /> | 86 | <action android:name="android.net.VpnService" /> |
84 | </intent-filter> | 87 | </intent-filter> |