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

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

Issue 2541823002: Move webrtc/api/androidtests to webrtc/sdk/android/instrumentationtests (Closed)
Patch Set: Make include for webrtc.gni absolute 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
« no previous file with comments | « webrtc/api/BUILD.gn ('k') | webrtc/api/androidtests/OWNERS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="org.webrtc.test"
4 android:versionCode="1"
5 android:versionName="1.0" >
6 <uses-feature android:name="android.hardware.camera" />
7 <uses-feature android:name="android.hardware.camera.autofocus" />
8 <uses-feature android:glEsVersion="0x00020000" android:required="true" />
9
10 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="21" />
11
12 <uses-permission android:name="android.permission.CAMERA" />
13 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
14 <uses-permission android:name="android.permission.RECORD_AUDIO" />
15 <uses-permission android:name="android.permission.INTERNET" />
16 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
17 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
18 <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
19
20 <instrumentation
21 android:name="android.test.InstrumentationTestRunner"
22 android:targetPackage="org.webrtc.test" />
23
24 <application
25 android:label="AndroidPeerconnectionTests" >
26 <uses-library android:name="android.test.runner" />
27 </application>
28
29 </manifest>
OLDNEW
« no previous file with comments | « webrtc/api/BUILD.gn ('k') | webrtc/api/androidtests/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698