blob: 4ff1d3777f255b37327bd3f5b6c712ab8d797629 [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
Remi NGUYEN VAN0ef3b752020-01-24 22:57:09 +090019 <uses-permission android:name="android.permission.TETHER_PRIVILEGED"/>
20
markchien43e97e02019-09-03 15:58:06 +080021 <application android:debuggable="true">
22 <uses-library android:name="android.test.runner" />
markchiene96f42d2020-03-31 00:30:12 +080023 <service
24 android:name="com.android.server.connectivity.tethering.MockTetheringService"
25 android:permission="android.permission.TETHER_PRIVILEGED"
26 android:exported="true">
27 <intent-filter>
28 <action android:name="com.android.server.connectivity.tethering.TetheringService"/>
29 </intent-filter>
30 </service>
markchien43e97e02019-09-03 15:58:06 +080031 </application>
markchiene96f42d2020-03-31 00:30:12 +080032
markchien43e97e02019-09-03 15:58:06 +080033 <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner"
markchien8f831c02019-12-18 17:47:26 +080034 android:targetPackage="com.android.networkstack.tethering.tests.unit"
markchien43e97e02019-09-03 15:58:06 +080035 android:label="Tethering service tests">
36 </instrumentation>
37</manifest>