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

Side by Side Diff: webrtc/test/android/AndroidManifest.xml

Issue 2903253004: Reland of Removes usage of native base::android::GetApplicationContext() (Closed)
Patch Set: Deprecated comment. Created 3 years, 7 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 | « webrtc/test/BUILD.gn ('k') | webrtc/test/android/org/webrtc/native_test/RTCNativeUnitTest.java » ('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 <!--
3 Copyright 2017 The WebRTC project authors. All Rights Reserved.
4
5 Use of this source code is governed by a BSD-style license
6 that can be found in the LICENSE file in the root of the source
7 tree. An additional intellectual property rights grant can be found
8 in the file PATENTS. All contributing project authors may
9 be found in the AUTHORS file in the root of the source tree.
10 -->
11
12 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
13 package="org.webrtc.native_test"
14 android:versionCode="1"
15 android:versionName="1.0">
16
17 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="23" />
18 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
19 <uses-permission android:name="android.permission.BLUETOOTH"/>
20 <uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
21 <uses-permission android:name="android.permission.CAMERA" />
22 <uses-permission android:name="android.permission.INTERNET"/>
23 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/>
24 <uses-permission android:name="android.permission.RECORD_AUDIO"/>
25 <uses-permission android:name="android.permission.WAKE_LOCK"/>
26 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
27
28 <application android:label="NativeTests"
29 android:name="org.chromium.base.BaseChromiumApplication">
30 <uses-library android:name="android.test.runner"/>
31 <activity android:name=".RTCNativeUnitTestActivity"
32 android:label="NativeTest"
33 android:configChanges="orientation|keyboardHidden"
34 android:process=":test_process">
35 <intent-filter>
36 <action android:name="android.intent.action.MAIN" />
37 <category android:name="android.intent.category.LAUNCHER" />
38 </intent-filter>
39 </activity>
40 </application>
41
42 <instrumentation android:name="org.chromium.native_test.NativeTestInstrument ationTestRunner"
43 android:targetPackage="org.webrtc.native_test"
44 android:label="Instrumentation entry point for org.webrtc.native_tes t"/>
45
46 </manifest>
OLDNEW
« no previous file with comments | « webrtc/test/BUILD.gn ('k') | webrtc/test/android/org/webrtc/native_test/RTCNativeUnitTest.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698