blob: 87fd276cd0c8ccce62d8e0df397cc9a532352d65 [file] [log] [blame]
Keun-young Parkfd3fbf72016-01-22 17:00:17 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2016 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"
18 xmlns:androidprv="http://schemas.android.com/apk/prv/res/android"
Yan Zhud06b6cb2019-10-08 13:47:04 -070019 android:sharedUserId="com.google.android.car.uid.kitchensink"
20 package="com.android.car.carservice_unittest">
Brett Chabota81f3e82018-12-13 19:06:42 -080021 <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner"
Keun young Parkde6c3a72019-04-11 14:47:06 -070022 android:targetPackage="com.android.car.carservice_unittest"
Keun-young Parkfd3fbf72016-01-22 17:00:17 -080023 android:label="Unit Tests for Car APIs"/>
Ram Periathiruvadi73e8b692019-11-04 21:48:11 -080024 <uses-permission android:name="android.car.permission.CAR_ENROLL_TRUST" />
Keun-young Parkfd3fbf72016-01-22 17:00:17 -080025
Anthony Hugha3d3bed2019-05-28 15:28:51 -070026 <application android:label="CarServiceUnitTest"
27 android:debuggable="true">
Keun-young Parkfd3fbf72016-01-22 17:00:17 -080028 <uses-library android:name="android.test.runner" />
Keun young Parka083a0b2020-05-01 12:24:17 -070029 <activity android:name="com.android.car.SystemActivityMonitoringServiceTest$ActivityA"/>
30 <activity android:name="com.android.car.SystemActivityMonitoringServiceTest$ActivityB"/>
31 <activity android:name="com.android.car.SystemActivityMonitoringServiceTest$ActivityC"/>
Keun young Parka083a0b2020-05-01 12:24:17 -070032 <activity android:name="com.android.car.SystemActivityMonitoringServiceTest$BlockingActivity"
33 android:taskAffinity="com.android.car.carservice_unittest.block"/>
Keun-young Parkfd3fbf72016-01-22 17:00:17 -080034 </application>
35</manifest>