1 <?xml version=
"1.0" encoding=
"utf-8"?>
3 Copyright (C)
2012-
2015 Tobias Brunner
4 Copyright (C)
2012 Giuliano Grassi
5 Copyright (C)
2012 Ralf Sager
6 Hochschule fuer Technik Rapperswil
8 This program is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by the
10 Free Software Foundation; either version
2 of the License, or (at your
11 option) any later version. See
<http://www.fsf.org/copyleft/gpl.txt
>.
13 This program is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 <manifest xmlns:
android=
"http://schemas.android.com/apk/res/android"
19 package=
"org.strongswan.android">
21 <uses-permission android:
name=
"android.permission.INTERNET" />
22 <uses-permission android:
name=
"android.permission.ACCESS_NETWORK_STATE" />
25 android:
name=
".logic.StrongSwanApplication"
26 android:
icon=
"@drawable/ic_launcher"
27 android:
label=
"@string/app_name"
28 android:
theme=
"@style/ApplicationTheme"
29 android:
allowBackup=
"false" >
31 android:
name=
".ui.MainActivity"
32 android:
label=
"@string/main_activity_name"
33 android:
launchMode=
"singleTop" >
35 <action android:
name=
"android.intent.action.MAIN" />
36 <category android:
name=
"android.intent.category.LAUNCHER" />
39 <action android:
name=
"org.strongswan.android.action.START_PROFILE" />
40 <category android:
name=
"android.intent.category.DEFAULT" />
44 android:
name=
".ui.VpnProfileDetailActivity" >
47 android:
name=
".ui.TrustedCertificatesActivity"
48 android:
label=
"@string/trusted_certs_title" >
51 android:
name=
".ui.LogActivity"
52 android:
label=
"@string/log_title" >
55 android:
name=
".ui.RemediationInstructionsActivity"
56 android:
label=
"@string/remediation_instructions_title" >
59 android:
name=
".ui.VpnProfileSelectActivity"
60 android:
label=
"@string/strongswan_shortcut" >
62 <action android:
name=
"android.intent.action.CREATE_SHORTCUT" />
63 <category android:
name=
"android.intent.category.DEFAULT" />
67 android:
name=
".ui.TrustedCertificateImportActivity"
68 android:
label=
"@string/import_certificate"
69 android:
theme=
"@style/AlertDialogTheme" >
71 <action android:
name=
"android.intent.action.VIEW" />
72 <category android:
name=
"android.intent.category.DEFAULT" />
73 <data android:
mimeType=
"application/x-x509-ca-cert" />
74 <data android:
mimeType=
"application/x-x509-server-cert" />
75 <data android:
mimeType=
"application/x-pem-file" />
76 <data android:
mimeType=
"application/pkix-cert" />
81 android:
name=
".logic.VpnStateService"
82 android:
exported=
"false" >
85 android:
name=
".logic.CharonVpnService"
86 android:
exported=
"false"
87 android:
permission=
"android.permission.BIND_VPN_SERVICE" >
89 <action android:
name=
"android.net.VpnService" />
94 android:
name=
".data.LogContentProvider"
95 android:
authorities=
"org.strongswan.android.content.log"
96 android:
exported=
"true" >
97 <!-- android:
grantUriPermissions=
"true" combined with a custom permission does
98 not work (probably too many indirections with ACTION_SEND) so we secure
99 this provider with a custom ticketing system --
>