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

Side by Side Diff: net/test/android/javatests/AndroidManifest.xml

Issue 2815083002: Android: Fix net/test AndroidManifest (Closed)
Patch Set: Created 3 years, 8 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 | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. 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 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. --> 4 found in the LICENSE file. -->
5 5
6 <!-- package name must be unique. --> 6 <!-- package name must be unique. -->
7 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 7 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
8 xmlns:tools="http://schemas.android.com/tools" 8 xmlns:tools="http://schemas.android.com/tools"
9 package="org.chromium.net.test.support"> 9 package="org.chromium.net.test.support">
10 10
11 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="23" /> 11 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="23" />
12 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> 12 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
13 <uses-permission android:name="android.permission.INTERNET"/> 13 <uses-permission android:name="android.permission.INTERNET"/>
14 14
15 <application android:label="ChromiumNetTestSupport"> 15 <application android:label="ChromiumNetTestSupport">
16 16
17 <uses-library android:name="android.test.runner" /> 17 <uses-library android:name="android.test.runner" />
18 18
19 <service android:name="org.chromium.net.test.EmbeddedTestServerService" 19 <service android:name="org.chromium.net.test.EmbeddedTestServerService"
20 android:exported="true" 20 android:exported="true"
21 tools:ignore="ExportedService"> 21 tools:ignore="ExportedService">
22 <intent-filter android:action="org.chromium.net.test.EMBEDDED_TEST_S ERVER_SERVICE" /> 22 <intent-filter>
23 <action android:name="org.chromium.net.test.EMBEDDED_TEST_SERVER _SERVICE" />
24 </intent-filter>
23 </service> 25 </service>
24 26
25 </application> 27 </application>
26 28
27 </manifest> 29 </manifest>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698