blob: 1fd96dd2d1673960a925b385d47e0669f59a5338 [file] [log] [blame]
sakalcb79d512017-01-11 06:21:26 -08001<!--
2 * Copyright 2017 The WebRTC Project Authors. All rights reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9-->
10
11<manifest
12 xmlns:android="http://schemas.android.com/apk/res/android"
13 package="org.appspot.apprtc.test">
glaznev@webrtc.org8390c272015-01-02 19:51:12 +000014
sakalcb79d512017-01-11 06:21:26 -080015 <uses-permission android:name="android.permission.RUN_INSTRUMENTATION" />
mandermo76ec9d72017-04-20 05:31:32 -070016 <uses-sdk android:minSdkVersion="13" android:targetSdkVersion="21" />
glaznev@webrtc.org8390c272015-01-02 19:51:12 +000017
18 <application>
19 <uses-library android:name="android.test.runner" />
20 </application>
21
sakalb99b5962017-02-07 04:12:30 -080022 <!-- Needed for chromium-junit4 tag. crbug.com/640116
23 TODO(sakal): Remove once the tag is no longer needed. -->
24 <!--suppress MissingPrefix -->
sakalcb79d512017-01-11 06:21:26 -080025 <instrumentation android:name="android.support.test.runner.AndroidJUnitRunner"
26 android:targetPackage="org.appspot.apprtc"
sakalb99b5962017-02-07 04:12:30 -080027 android:label="Tests for AppRTCMobile"
28 chromium-junit4="true"/>
sakalcb79d512017-01-11 06:21:26 -080029</manifest>