blob: 31eaabff527427b4af68753d90c94ba5a39499ea [file] [log] [blame]
markchiena6ba54d2019-09-03 15:58:06 +08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2019 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<manifest xmlns:android="http://schemas.android.com/apk/res/android"
markchien58b0f232019-12-18 17:47:26 +080017 package="com.android.networkstack.tethering.tests.unit">
markchiena6ba54d2019-09-03 15:58:06 +080018
Paul Hu77fa8d62020-04-16 02:54:37 +000019 <uses-permission android:name="android.permission.READ_PHONE_STATE"/>
Remi NGUYEN VAN84229e02020-01-24 22:57:09 +090020 <uses-permission android:name="android.permission.TETHER_PRIVILEGED"/>
21
markchiena6ba54d2019-09-03 15:58:06 +080022 <application android:debuggable="true">
23 <uses-library android:name="android.test.runner" />
Mark Chien09ad80f2020-04-07 16:17:49 +000024 <service
markchien503be612020-04-12 21:41:29 +080025 android:name="com.android.networkstack.tethering.MockTetheringService"
Mark Chien09ad80f2020-04-07 16:17:49 +000026 android:permission="android.permission.TETHER_PRIVILEGED"
27 android:exported="true">
28 <intent-filter>
markchien503be612020-04-12 21:41:29 +080029 <action android:name="com.android.networkstack.tethering.TetheringService"/>
Mark Chien09ad80f2020-04-07 16:17:49 +000030 </intent-filter>
31 </service>
markchiena6ba54d2019-09-03 15:58:06 +080032 </application>
Mark Chien09ad80f2020-04-07 16:17:49 +000033
markchiena6ba54d2019-09-03 15:58:06 +080034 <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner"
markchien58b0f232019-12-18 17:47:26 +080035 android:targetPackage="com.android.networkstack.tethering.tests.unit"
markchiena6ba54d2019-09-03 15:58:06 +080036 android:label="Tethering service tests">
37 </instrumentation>
38</manifest>