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

Side by Side Diff: talk/app/webrtc/androidtests/AndroidManifest.xml

Issue 1610243002: Move talk/app/webrtc to webrtc/api (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Removed processing of api.gyp for Chromium builds Created 4 years, 10 months 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 | « talk/app/webrtc/OWNERS ('k') | talk/app/webrtc/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:icon="@drawable/ic_launcher"
26 android:label="@string/app_name" >
27 <uses-library android:name="android.test.runner" />
28 </application>
29
30 </manifest>
OLDNEW
« no previous file with comments | « talk/app/webrtc/OWNERS ('k') | talk/app/webrtc/androidtests/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698