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

Side by Side Diff: components/devtools_bridge/android/javatests/AndroidManifest.xml

Issue 1061713002: Update minSdkVersion and targetSdkVersion constants. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2014 The Chromium Authors. All rights reserved. Use of 2 <!-- Copyright 2014 The Chromium Authors. All rights reserved. Use of
3 this source code is governed by a BSD-style license that can be found 3 this source code is governed by a BSD-style license that can be found
4 in the LICENSE file. --> 4 in the LICENSE file. -->
5 <!-- package name must be unique so suffix with "tests" so package loader 5 <!-- package name must be unique so suffix with "tests" so package loader
6 doesn't ignore this. --> 6 doesn't ignore this. -->
7 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 7 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
8 package="org.chromium.components.devtools_bridge.tests"> 8 package="org.chromium.components.devtools_bridge.tests">
9 <application 9 <application
10 android:name=".TestApplication"> 10 android:name=".TestApplication">
(...skipping 30 matching lines...) Expand all
41 <category android:name="com.google.ipc.invalidation.ticl.android 2"/> 41 <category android:name="com.google.ipc.invalidation.ticl.android 2"/>
42 </intent-filter> 42 </intent-filter>
43 </receiver> 43 </receiver>
44 <!-- GCM multiplexer --> 44 <!-- GCM multiplexer -->
45 <service android:exported="false" android:name="com.google.ipc.invalidat ion.external.client.contrib.MultiplexingGcmListener"> 45 <service android:exported="false" android:name="com.google.ipc.invalidat ion.external.client.contrib.MultiplexingGcmListener">
46 <!-- MultiplexingGcmListener fails if |sender_ids| looks like an int eger. 46 <!-- MultiplexingGcmListener fails if |sender_ids| looks like an int eger.
47 Make it look like a string by duplicating the ID. --> 47 Make it look like a string by duplicating the ID. -->
48 <meta-data android:name="sender_ids" android:value="287888336735,287 888336735"/> 48 <meta-data android:name="sender_ids" android:value="287888336735,287 888336735"/>
49 </service> 49 </service>
50 </application> 50 </application>
51 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="21" /> 51 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="22" />
52 <instrumentation android:name="android.test.InstrumentationTestRunner" 52 <instrumentation android:name="android.test.InstrumentationTestRunner"
53 android:targetPackage="org.chromium.components.devtools_bridge.tests " 53 android:targetPackage="org.chromium.components.devtools_bridge.tests "
54 android:label="Tests for org.chromium.components.devtools_bridge"/> 54 android:label="Tests for org.chromium.components.devtools_bridge"/>
55 55
56 <permission 56 <permission
57 android:name="org.chromium.components.devtools_bridge.tests.permissi on.C2D_MESSAGE" 57 android:name="org.chromium.components.devtools_bridge.tests.permissi on.C2D_MESSAGE"
58 android:protectionLevel="signature" /> 58 android:protectionLevel="signature" />
59 59
60 <uses-permission android:name="android.permission.RUN_INSTRUMENTATION" /> 60 <uses-permission android:name="android.permission.RUN_INSTRUMENTATION" />
61 <uses-permission android:name="android.permission.INJECT_EVENTS" /> 61 <uses-permission android:name="android.permission.INJECT_EVENTS" />
62 <uses-permission android:name="android.permission.INTERNET" /> 62 <uses-permission android:name="android.permission.INTERNET" />
63 <uses-permission android:name="android.permission.USE_CREDENTIALS" /> 63 <uses-permission android:name="android.permission.USE_CREDENTIALS" />
64 <uses-permission android:name="android.permission.WAKE_LOCK" /> 64 <uses-permission android:name="android.permission.WAKE_LOCK" />
65 <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" / > 65 <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" / >
66 <uses-permission 66 <uses-permission
67 android:name="org.chromium.components.devtools_bridge.tests.permissi on.C2D_MESSAGE" /> 67 android:name="org.chromium.components.devtools_bridge.tests.permissi on.C2D_MESSAGE" />
68 68
69 <!-- For manual testing with Chrome Shell --> 69 <!-- For manual testing with Chrome Shell -->
70 <uses-permission android:name="org.chromium.chrome.shell.permission.DEBUG" / > 70 <uses-permission android:name="org.chromium.chrome.shell.permission.DEBUG" / >
71 71
72 <!-- For manual testing with Clankium --> 72 <!-- For manual testing with Clankium -->
73 <uses-permission android:name="com.google.android.apps.chrome.permission.DEB UG" /> 73 <uses-permission android:name="com.google.android.apps.chrome.permission.DEB UG" />
74 </manifest> 74 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698