The Android Open Source Project | 8aa1b8f | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- |
| 3 | * Copyright (C) 2007 The Android Open Source Project |
| 4 | * |
| 5 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | * you may not use this file except in compliance with the License. |
| 7 | * You may obtain a copy of the License at |
| 8 | * |
| 9 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | * |
| 11 | * Unless required by applicable law or agreed to in writing, software |
| 12 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | * See the License for the specific language governing permissions and |
| 15 | * limitations under the License. |
| 16 | --> |
| 17 | |
| 18 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
paulhu | 435166f | 2019-05-03 16:30:46 +0800 | [diff] [blame^] | 19 | package="android.net.cts" |
| 20 | android:targetSandboxVersion="2"> |
The Android Open Source Project | 8aa1b8f | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 21 | |
Chia-chi Yeh | 4231515 | 2012-02-28 14:05:12 -0800 | [diff] [blame] | 22 | <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> |
| 23 | <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> |
Fyodor Kupolov | e57e9bc | 2015-07-29 11:24:34 -0700 | [diff] [blame] | 24 | <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> |
Etan Cohen | 439c05c | 2018-02-28 16:25:22 -0800 | [diff] [blame] | 25 | <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> |
Chia-chi Yeh | 4231515 | 2012-02-28 14:05:12 -0800 | [diff] [blame] | 26 | <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" /> |
| 27 | <uses-permission android:name="android.permission.CHANGE_WIFI_STATE" /> |
Keun young Park | 3019940 | 2012-07-12 12:56:04 -0700 | [diff] [blame] | 28 | <uses-permission android:name="android.permission.DISABLE_KEYGUARD" /> |
Chia-chi Yeh | 4231515 | 2012-02-28 14:05:12 -0800 | [diff] [blame] | 29 | <uses-permission android:name="android.permission.INTERNET" /> |
Chia-chi Yeh | 6bda905 | 2012-03-30 13:35:54 -0700 | [diff] [blame] | 30 | <uses-permission android:name="android.permission.RECORD_AUDIO" /> |
Chia-chi Yeh | 4231515 | 2012-02-28 14:05:12 -0800 | [diff] [blame] | 31 | <uses-permission android:name="android.permission.WAKE_LOCK" /> |
| 32 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
Kevin Ma | 744f5e2 | 2016-03-14 13:10:02 -0700 | [diff] [blame] | 33 | <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" /> |
Chia-chi Yeh | 4231515 | 2012-02-28 14:05:12 -0800 | [diff] [blame] | 34 | |
Chad Brubaker | 2a880ae | 2017-10-24 09:06:38 -0700 | [diff] [blame] | 35 | <application android:usesCleartextTraffic="true"> |
The Android Open Source Project | 8aa1b8f | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 36 | <uses-library android:name="android.test.runner" /> |
Narayan Kamath | 505728b | 2014-12-12 10:55:51 +0000 | [diff] [blame] | 37 | <uses-library android:name="org.apache.http.legacy" android:required="false" /> |
The Android Open Source Project | 8aa1b8f | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 38 | </application> |
| 39 | |
Brett Chabot | 420804c | 2019-02-28 10:01:06 -0800 | [diff] [blame] | 40 | <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner" |
Nash Lincoln | de95223 | 2015-09-17 13:46:25 -0700 | [diff] [blame] | 41 | android:targetPackage="android.net.cts" |
Brett Chabot | cf8d741 | 2014-01-09 14:32:20 -0800 | [diff] [blame] | 42 | android:label="CTS tests of android.net"> |
| 43 | <meta-data android:name="listener" |
| 44 | android:value="com.android.cts.runner.CtsTestRunListener" /> |
| 45 | </instrumentation> |
The Android Open Source Project | 8aa1b8f | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 46 | |
| 47 | </manifest> |
| 48 | |