OLD | NEW |
| (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> | |
OLD | NEW |