Lorenzo Colitti | 5d5cd1f | 2014-11-16 20:09:24 -0800 | [diff] [blame] | 1 | <?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 Leme | a0f49f2 | 2016-02-18 10:43:54 -0800 | [diff] [blame] | 18 | package="com.android.cts.net.hostside"> |
Lorenzo Colitti | 5d5cd1f | 2014-11-16 20:09:24 -0800 | [diff] [blame] | 19 | |
Lorenzo Colitti | 5d5cd1f | 2014-11-16 20:09:24 -0800 | [diff] [blame] | 20 | <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> |
Felipe Leme | a0f49f2 | 2016-02-18 10:43:54 -0800 | [diff] [blame] | 21 | <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/> |
| 22 | <uses-permission android:name="android.permission.CHANGE_WIFI_STATE"/> |
Dianne Hackborn | 568c73d | 2018-01-19 17:54:16 -0800 | [diff] [blame] | 23 | <uses-permission android:name="android.permission.FOREGROUND_SERVICE"/> |
Felipe Leme | a0f49f2 | 2016-02-18 10:43:54 -0800 | [diff] [blame] | 24 | <uses-permission android:name="android.permission.INTERNET"/> |
Sudheer Shanka | a30a1ed | 2017-08-15 13:29:50 -0700 | [diff] [blame] | 25 | <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> |
Sudheer Shanka | 2186a94 | 2019-02-15 17:58:15 -0800 | [diff] [blame] | 26 | <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> |
| 27 | <uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION" /> |
Sudheer Shanka | 6291996 | 2020-02-14 18:08:01 -0800 | [diff] [blame] | 28 | <uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" /> |
Sudheer Shanka | a30a1ed | 2017-08-15 13:29:50 -0700 | [diff] [blame] | 29 | <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" /> |
Sudheer Shanka | 09ae6d2 | 2019-06-25 14:17:35 -0700 | [diff] [blame] | 30 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
Hai Zhang | 59b9da9 | 2020-03-25 15:28:39 -0700 | [diff] [blame^] | 31 | <uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" /> |
Lorenzo Colitti | 5d5cd1f | 2014-11-16 20:09:24 -0800 | [diff] [blame] | 32 | |
Sudheer Shanka | 09ae6d2 | 2019-06-25 14:17:35 -0700 | [diff] [blame] | 33 | <application android:requestLegacyExternalStorage="true" > |
Lorenzo Colitti | 5d5cd1f | 2014-11-16 20:09:24 -0800 | [diff] [blame] | 34 | <uses-library android:name="android.test.runner" /> |
| 35 | <activity android:name=".MyActivity" /> |
| 36 | <service android:name=".MyVpnService" |
| 37 | android:permission="android.permission.BIND_VPN_SERVICE"> |
| 38 | <intent-filter> |
| 39 | <action android:name="android.net.VpnService"/> |
| 40 | </intent-filter> |
| 41 | </service> |
Felipe Leme | 4188bc3 | 2016-05-23 16:10:07 -0700 | [diff] [blame] | 42 | <service |
| 43 | android:name=".MyNotificationListenerService" |
| 44 | android:label="MyNotificationListenerService" |
| 45 | android:permission="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE" > |
| 46 | <intent-filter> |
| 47 | <action android:name="android.service.notification.NotificationListenerService" /> |
| 48 | </intent-filter> |
| 49 | </service> |
Lorenzo Colitti | 5d5cd1f | 2014-11-16 20:09:24 -0800 | [diff] [blame] | 50 | </application> |
| 51 | |
| 52 | <instrumentation |
Brett Chabot | 29235ec | 2019-02-15 13:02:34 -0800 | [diff] [blame] | 53 | android:name="androidx.test.runner.AndroidJUnitRunner" |
Lorenzo Colitti | 5d5cd1f | 2014-11-16 20:09:24 -0800 | [diff] [blame] | 54 | android:targetPackage="com.android.cts.net.hostside" /> |
| 55 | |
| 56 | </manifest> |