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" |
Nash Lincoln | de95223 | 2015-09-17 13:46:25 -0700 | [diff] [blame] | 19 | package="android.net.cts"> |
The Android Open Source Project | 8aa1b8f | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 20 | |
Chia-chi Yeh | 4231515 | 2012-02-28 14:05:12 -0800 | [diff] [blame] | 21 | <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> |
| 22 | <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> |
Fyodor Kupolov | e57e9bc | 2015-07-29 11:24:34 -0700 | [diff] [blame] | 23 | <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> |
Etan Cohen | 439c05c | 2018-02-28 16:25:22 -0800 | [diff] [blame] | 24 | <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> |
Chia-chi Yeh | 4231515 | 2012-02-28 14:05:12 -0800 | [diff] [blame] | 25 | <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" /> |
| 26 | <uses-permission android:name="android.permission.CHANGE_WIFI_STATE" /> |
Keun young Park | 3019940 | 2012-07-12 12:56:04 -0700 | [diff] [blame] | 27 | <uses-permission android:name="android.permission.DISABLE_KEYGUARD" /> |
Chia-chi Yeh | 4231515 | 2012-02-28 14:05:12 -0800 | [diff] [blame] | 28 | <uses-permission android:name="android.permission.INTERNET" /> |
Chia-chi Yeh | 6bda905 | 2012-03-30 13:35:54 -0700 | [diff] [blame] | 29 | <uses-permission android:name="android.permission.RECORD_AUDIO" /> |
Chia-chi Yeh | 4231515 | 2012-02-28 14:05:12 -0800 | [diff] [blame] | 30 | <uses-permission android:name="android.permission.WAKE_LOCK" /> |
| 31 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
Kevin Ma | 744f5e2 | 2016-03-14 13:10:02 -0700 | [diff] [blame] | 32 | <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" /> |
Chia-chi Yeh | 4231515 | 2012-02-28 14:05:12 -0800 | [diff] [blame] | 33 | |
Chad Brubaker | 2a880ae | 2017-10-24 09:06:38 -0700 | [diff] [blame] | 34 | <application android:usesCleartextTraffic="true"> |
The Android Open Source Project | 8aa1b8f | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 35 | <uses-library android:name="android.test.runner" /> |
Narayan Kamath | 505728b | 2014-12-12 10:55:51 +0000 | [diff] [blame] | 36 | <uses-library android:name="org.apache.http.legacy" android:required="false" /> |
Dianne Hackborn | d5dc8fe | 2016-04-13 16:24:29 -0700 | [diff] [blame] | 37 | |
| 38 | <receiver android:name=".ConnectivityReceiver"> |
| 39 | <intent-filter> |
| 40 | <action android:name="android.net.conn.CONNECTIVITY_CHANGE" /> |
| 41 | </intent-filter> |
| 42 | </receiver> |
The Android Open Source Project | 8aa1b8f | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 43 | </application> |
| 44 | |
Brett Chabot | cf8d741 | 2014-01-09 14:32:20 -0800 | [diff] [blame] | 45 | <instrumentation android:name="android.support.test.runner.AndroidJUnitRunner" |
Nash Lincoln | de95223 | 2015-09-17 13:46:25 -0700 | [diff] [blame] | 46 | android:targetPackage="android.net.cts" |
Brett Chabot | cf8d741 | 2014-01-09 14:32:20 -0800 | [diff] [blame] | 47 | android:label="CTS tests of android.net"> |
| 48 | <meta-data android:name="listener" |
| 49 | android:value="com.android.cts.runner.CtsTestRunListener" /> |
| 50 | </instrumentation> |
The Android Open Source Project | 8aa1b8f | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 51 | |
| 52 | </manifest> |
| 53 | |