<?xml version="1.0" encoding="utf-8"?> <!-- Copyright (C) 2011 The Android Open Source Project Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="de.blinkt.openvpn" android:versionCode="57" android:versionName="0.5.29" > <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <!-- <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> --> <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> <!-- <uses-permission android:name="com.android.vending.BILLING" /> --> <uses-sdk android:minSdkVersion="15" android:targetSdkVersion="15" /> <permission android:name="de.blinkt.openvpn.REMOTE_API" android:description="@string/permission_description" android:label="Control OpenVPN" android:permissionGroup="android.permission-group.NETWORK" android:protectionLevel="dangerous" /> <application android:allowBackup="true" android:icon="@drawable/icon" android:label="@string/app" > <activity android:name=".AboutFragment" /> <activity android:name=".VPNPreferences" android:windowSoftInputMode="stateHidden" /> <activity android:name=".LogWindow" android:label="@string/openvpn_log" /> <activity android:name=".SendDumpActivity" /> <activity android:name=".FileSelect" /> <activity android:name=".MainActivity" > <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> <service android:name=".OpenVpnService" android:permission="android.permission.BIND_VPN_SERVICE" > <intent-filter> <action android:name="android.net.VpnService" /> </intent-filter> </service> <service android:name=".api.ExternalOpenVPNService" android:permission="de.blinkt.openvpn.REMOTE_API" > <intent-filter> <action android:name="de.blinkt.openvpn.api.IOpenVPNAPIService" /> </intent-filter> </service> <activity android:name=".api.GrantPermissionsActivity" android:permission="de.blinkt.openvpn.REMOTE_API" > <intent-filter> <action android:name="android.intent.action.MAIN" /> </intent-filter> </activity> <receiver android:name=".OnBootReceiver" > <intent-filter> <action android:name="android.intent.action.BOOT_COMPLETED" /> </intent-filter> </receiver> <activity android:name=".ConfigConverter" android:label="Convert Config File" > <intent-filter android:label="@string/import_config" > <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.BROWSABLE" /> <data android:mimeType="application/x-openvpn-profile" /> </intent-filter> <intent-filter android:label="@string/import_config" > <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.BROWSABLE" /> <data android:mimeType="application/ovpn" /> </intent-filter> <intent-filter android:label="@string/import_config" > <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.BROWSABLE" /> <category android:name="android.intent.category.DEFAULT" /> <data android:pathPattern=".*\\.ovpn" android:scheme="content" /> </intent-filter> </activity> <activity android:name=".LaunchVPN" android:label="@string/vpn_launch_title" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.DEFAULT" /> </intent-filter> </activity> <activity-alias android:name=".app.CreateShortcuts" android:label="@string/vpn_shortcut" android:targetActivity=".LaunchVPN" > <intent-filter> <action android:name="android.intent.action.CREATE_SHORTCUT" /> <category android:name="android.intent.category.DEFAULT" /> </intent-filter> </activity-alias> <provider android:name=".FileProvider" android:authorities="de.blinkt.openvpn.FileProvider" android:exported="true" android:grantUriPermissions="true" /> </application> </manifest>