blob: a2da3f7369b948b3e202e33e8acb6e6c504625ee [file] [log] [blame]
Zhomart Mukhamejanovf4d280c2018-04-17 13:20:22 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2018 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 package="com.example.android.systemupdatersample.tests">
19
Zhomart Mukhamejanov963e3ee2018-04-26 21:07:05 -070020 <uses-sdk android:minSdkVersion="27" android:targetSdkVersion="27" />
21
Zhomart Mukhamejanovf4d280c2018-04-17 13:20:22 -070022 <!-- We add an application tag here just so that we can indicate that
23 this package needs to link against the android.test library,
24 which is needed when building test cases. -->
25 <application>
26 <uses-library android:name="android.test.runner" />
27 </application>
28
koushik panugantid5c7fb52018-12-12 10:39:44 -080029 <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner"
Zhomart Mukhamejanovf4d280c2018-04-17 13:20:22 -070030 android:targetPackage="com.example.android.systemupdatersample"
Tao Bao32118f62018-04-25 15:19:47 -070031 android:label="Tests for SystemUpdaterSample."/>
Zhomart Mukhamejanovf4d280c2018-04-17 13:20:22 -070032
33</manifest>