blob: c7978f877514c23ad9cf06b20bf9e6e494bcd2e2 [file] [log] [blame]
Lorenzo Colitti5d5cd1f2014-11-16 20:09:24 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2014 The Android Open Source Project
3
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"
Felipe Lemea0f49f22016-02-18 10:43:54 -080018 package="com.android.cts.net.hostside">
Lorenzo Colitti5d5cd1f2014-11-16 20:09:24 -080019
Lorenzo Colitti5d5cd1f2014-11-16 20:09:24 -080020 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
Felipe Lemea0f49f22016-02-18 10:43:54 -080021 <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
22 <uses-permission android:name="android.permission.CHANGE_WIFI_STATE"/>
23 <uses-permission android:name="android.permission.INTERNET"/>
Lorenzo Colitti5d5cd1f2014-11-16 20:09:24 -080024
25 <application>
26 <uses-library android:name="android.test.runner" />
27 <activity android:name=".MyActivity" />
28 <service android:name=".MyVpnService"
29 android:permission="android.permission.BIND_VPN_SERVICE">
30 <intent-filter>
31 <action android:name="android.net.VpnService"/>
32 </intent-filter>
33 </service>
34 </application>
35
36 <instrumentation
37 android:name="android.support.test.runner.AndroidJUnitRunner"
38 android:targetPackage="com.android.cts.net.hostside" />
39
40</manifest>