Index: webrtc/examples/androidtests/AndroidManifest.xml |
diff --git a/webrtc/examples/androidtests/AndroidManifest.xml b/webrtc/examples/androidtests/AndroidManifest.xml |
index f99f477a67590b5808ccabdeb3db8ff608f4828c..30aeee0305e3c4034224cda0a67f0d13443a7797 100644 |
--- a/webrtc/examples/androidtests/AndroidManifest.xml |
+++ b/webrtc/examples/androidtests/AndroidManifest.xml |
@@ -1,17 +1,26 @@ |
-<?xml version="1.0" encoding="utf-8"?> |
-<manifest xmlns:android="http://schemas.android.com/apk/res/android" |
- package="org.appspot.apprtc.test" |
- android:versionCode="1" |
- android:versionName="1.0" > |
+<!-- |
+ * 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" |
+ package="org.appspot.apprtc.test"> |
<uses-sdk android:minSdkVersion="13" android:targetSdkVersion="21" /> |
- <instrumentation |
- android:name="android.test.InstrumentationTestRunner" |
- android:targetPackage="org.appspot.apprtc" /> |
+ <uses-permission android:name="android.permission.RUN_INSTRUMENTATION" /> |
<application> |
<uses-library android:name="android.test.runner" /> |
</application> |
-</manifest> |
+ <instrumentation android:name="android.support.test.runner.AndroidJUnitRunner" |
+ android:targetPackage="org.appspot.apprtc" |
+ android:label="Tests for AppRTCMobile"/> |
+</manifest> |