blob: 58b851fd6cb5b3560f0cc7c89f9706fe36d7a329 [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"
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070018 package="com.android.cts.vpnfirewall">
Robin Lee5ffd3a02016-02-09 17:53:11 +000019
Brio Automationff241e52018-12-19 23:35:03 -080020 <uses-sdk android:targetSdkVersion="23"/>
Chalard Jeana38390a2018-03-15 16:51:47 +090021 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
Robin Lee5ffd3a02016-02-09 17:53:11 +000022
Charles He89bda132017-06-14 13:59:04 +010023 <application android:label="@string/app">
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070024 <activity android:name=".VpnClient"
25 android:exported="true">
Charles He89bda132017-06-14 13:59:04 +010026 <intent-filter>
27 <action android:name="android.intent.action.MAIN"/>
28 <action android:name="com.android.cts.vpnfirewall.action.CONNECT_AND_FINISH"/>
29 <category android:name="android.intent.category.LAUNCHER"/>
30 </intent-filter>
31 </activity>
32
Robin Lee5ffd3a02016-02-09 17:53:11 +000033 <service android:name=".ReflectorVpnService"
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070034 android:permission="android.permission.BIND_VPN_SERVICE"
35 android:exported="true">
Robin Lee5ffd3a02016-02-09 17:53:11 +000036 <intent-filter>
37 <action android:name="android.net.VpnService"/>
38 </intent-filter>
39 </service>
40 </application>
41
42</manifest>