Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(527)

Side by Side Diff: webrtc/examples/androidtests/AndroidManifest.xml

Issue 2585813002: Espresso test case to control loopback call (Closed)
Patch Set: Only keeping necessary dependencies in BUILD.gn for the test case Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="org.appspot.apprtc.test" 3 package="org.appspot.apprtc.test"
4 android:versionCode="1" 4 android:versionCode="1"
5 android:versionName="1.0" > 5 android:versionName="1.0" >
6 6
7 <uses-permission android:name="android.permissions.RUN_INSTRUMENTATION" />
7 <uses-sdk android:minSdkVersion="13" android:targetSdkVersion="21" /> 8 <uses-sdk android:minSdkVersion="13" android:targetSdkVersion="21" />
8 9
9 <instrumentation 10 <instrumentation
10 android:name="android.test.InstrumentationTestRunner" 11 android:name="android.support.test.runner.AndroidJUnitRunner"
11 android:targetPackage="org.appspot.apprtc" /> 12 android:targetPackage="org.appspot.apprtc" />
12 13
13 <application> 14 <application>
14 <uses-library android:name="android.test.runner" /> 15 <uses-library android:name="android.test.runner" />
15 </application> 16 </application>
16 17
17 </manifest> 18 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698