OLD | NEW |
---|---|
(Empty) | |
1 <?xml version="1.0" encoding="utf-8"?> | |
2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. | |
3 Use of this source code is governed by a BSD-style license that can be | |
4 found in the LICENSE file. --> | |
5 | |
6 <!-- package name must be unique. --> | |
7 <manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
8 xmlns:tools="http://schemas.android.com/tools" | |
9 package="org.chromium.net.test.support"> | |
10 | |
11 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="23" /> | |
12 <uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" /> | |
mef
2015/12/02 16:00:08
Does it need all these permissions? Like Mock loca
jbudorick
2015/12/03 00:03:44
ah, no, just external storage.
| |
13 <uses-permission android:name="android.permission.READ_LOGS"/> | |
14 <uses-permission android:name="android.permission.WAKE_LOCK" /> | |
15 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> | |
16 <uses-permission android:name="android.permission.INTERNET" /> | |
17 | |
18 <application android:label="ChromiumNetTestSupport"> | |
19 | |
20 <uses-library android:name="android.test.runner" /> | |
21 | |
22 <service android:name="org.chromium.net.test.EmbeddedTestServerService" | |
23 android:exported="true" | |
24 tools:ignore="ExportedService"> | |
25 <intent-filter android:action="org.chromium.net.test.EMBEDDED_TEST_S ERVER_SERVICE" /> | |
26 </service> | |
27 | |
28 </application> | |
29 | |
30 </manifest> | |
OLD | NEW |