blob: 4b9184e2dbdb2bf6b801fc9929f68fe4cf328a7b [file] [log] [blame]
Robin Lee5ffd3a02016-02-09 17:53:11 +00001<?xml version="1.0" encoding="utf-8"?>
Charles He5c11c622017-06-12 17:09:25 +01002<!-- Copyright (C) 2017 The Android Open Source Project
Robin Lee5ffd3a02016-02-09 17:53:11 +00003
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
17<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Charles He89bda132017-06-14 13:59:04 +010018 package="com.android.cts.vpnfirewall">
Robin Lee5ffd3a02016-02-09 17:53:11 +000019
Chalard Jeana38390a2018-03-15 16:51:47 +090020 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
pyung.leeb8081982018-10-08 21:32:28 +090021 <uses-permission android:name="android.permission.FOREGROUND_SERVICE"/>
Robin Lee5ffd3a02016-02-09 17:53:11 +000022
Charles He89bda132017-06-14 13:59:04 +010023 <application android:label="@string/app">
24 <activity android:name=".VpnClient">
25 <intent-filter>
26 <action android:name="android.intent.action.MAIN"/>
27 <action android:name="com.android.cts.vpnfirewall.action.CONNECT_AND_FINISH"/>
28 <category android:name="android.intent.category.LAUNCHER"/>
29 </intent-filter>
30 </activity>
31
Robin Lee5ffd3a02016-02-09 17:53:11 +000032 <service android:name=".ReflectorVpnService"
33 android:permission="android.permission.BIND_VPN_SERVICE">
34 <intent-filter>
35 <action android:name="android.net.VpnService"/>
36 </intent-filter>
Charles He5c11c622017-06-12 17:09:25 +010037 <meta-data android:name="android.net.VpnService.SUPPORTS_ALWAYS_ON"
38 android:value="false"/>
Robin Lee5ffd3a02016-02-09 17:53:11 +000039 </service>
40 </application>
41
42</manifest>