blob: 31eaabff527427b4af68753d90c94ba5a39499ea [file] [log] [blame]
markchien43e97e02019-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"
markchien8f831c02019-12-18 17:47:26 +080017 package="com.android.networkstack.tethering.tests.unit">
markchien43e97e02019-09-03 15:58:06 +080018
paulhu648fc2c2020-03-24 21:09:51 +080019 <uses-permission android:name="android.permission.READ_PHONE_STATE"/>
Remi NGUYEN VAN0ef3b752020-01-24 22:57:09 +090020 <uses-permission android:name="android.permission.TETHER_PRIVILEGED"/>
21
markchien43e97e02019-09-03 15:58:06 +080022 <application android:debuggable="true">
23 <uses-library android:name="android.test.runner" />
markchiene96f42d2020-03-31 00:30:12 +080024 <service
markchiend9955662020-04-12 21:41:29 +080025 android:name="com.android.networkstack.tethering.MockTetheringService"
markchiene96f42d2020-03-31 00:30:12 +080026 android:permission="android.permission.TETHER_PRIVILEGED"
27 android:exported="true">
28 <intent-filter>
markchiend9955662020-04-12 21:41:29 +080029 <action android:name="com.android.networkstack.tethering.TetheringService"/>
markchiene96f42d2020-03-31 00:30:12 +080030 </intent-filter>
31 </service>
markchien43e97e02019-09-03 15:58:06 +080032 </application>
markchiene96f42d2020-03-31 00:30:12 +080033
markchien43e97e02019-09-03 15:58:06 +080034 <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner"
markchien8f831c02019-12-18 17:47:26 +080035 android:targetPackage="com.android.networkstack.tethering.tests.unit"
markchien43e97e02019-09-03 15:58:06 +080036 android:label="Tethering service tests">
37 </instrumentation>
38</manifest>