blob: 6bddc4a39577a9c339bfcf9c9bd7c398aa2a209a [file] [log] [blame]
Yan Wang188e6372020-01-21 10:13:45 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2020 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<!--suppress AndroidUnknownAttribute -->
17<manifest xmlns:android="http://schemas.android.com/apk/res/android"
18 package="com.google.android.startop.iorap.tests"
19 android:sharedUserId="com.google.android.startop.iorap.tests.functional"
20 android:versionCode="1"
21 android:versionName="1.0" >
22
23 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
24 <!--suppress AndroidDomInspection -->
25 <instrumentation
26 android:name="androidx.test.runner.AndroidJUnitRunner"
27 android:targetPackage="com.google.android.startop.iorap.tests" />
28
29 <!--
30 'debuggable=true' is required to properly load mockito jvmti dependencies,
31 otherwise it gives the following error at runtime:
32
33 Openjdkjvmti plugin was loaded on a non-debuggable Runtime.
34 Plugin was loaded too late to change runtime state to DEBUGGABLE. -->
35 <application android:debuggable="true">
36 <uses-library android:name="android.test.runner" />
37 </application>
38</manifest>