2017-01-11 06:21:26 -08:00
|
|
|
<!--
|
|
|
|
|
* Copyright 2017 The WebRTC Project Authors. All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by a BSD-style license
|
|
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
|
|
|
|
* in the file PATENTS. All contributing project authors may
|
|
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
<manifest
|
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-07-11 11:56:15 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2017-01-11 06:21:26 -08:00
|
|
|
package="org.appspot.apprtc.test">
|
2015-01-02 19:51:12 +00:00
|
|
|
|
2017-01-11 06:21:26 -08:00
|
|
|
<uses-permission android:name="android.permission.RUN_INSTRUMENTATION" />
|
2017-04-20 05:31:32 -07:00
|
|
|
<uses-sdk android:minSdkVersion="13" android:targetSdkVersion="21" />
|
2015-01-02 19:51:12 +00:00
|
|
|
|
|
|
|
|
<application>
|
|
|
|
|
<uses-library android:name="android.test.runner" />
|
|
|
|
|
</application>
|
|
|
|
|
|
2017-07-11 11:56:15 +02:00
|
|
|
<!-- tools:ignore needed for chromium-junit4 tag. crbug.com/640116
|
2017-02-07 04:12:30 -08:00
|
|
|
TODO(sakal): Remove once the tag is no longer needed. -->
|
2017-01-11 06:21:26 -08:00
|
|
|
<instrumentation android:name="android.support.test.runner.AndroidJUnitRunner"
|
2017-07-11 11:56:15 +02:00
|
|
|
tools:ignore="MissingPrefix"
|
2017-01-11 06:21:26 -08:00
|
|
|
android:targetPackage="org.appspot.apprtc"
|
2017-02-07 04:12:30 -08:00
|
|
|
android:label="Tests for AppRTCMobile"
|
|
|
|
|
chromium-junit4="true"/>
|
2017-01-11 06:21:26 -08:00
|
|
|
</manifest>
|