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

Side by Side Diff: android_webview/tools/WebViewTelemetryShell/AndroidManifest.xml

Issue 1190103002: Make lint fail builds. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: set android_webview to use minsdk 19 Created 5 years, 6 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 <!-- 1 <!--
2 * Copyright 2014 The Chromium Authors. All rights reserved. 2 * Copyright 2014 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 6
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.telemetry_shell" 8 package="org.chromium.telemetry_shell"
9 android:versionCode="1" 9 android:versionCode="1"
10 android:versionName="1.0" > 10 android:versionName="1.0" >
11 11
12 <uses-sdk android:minSdkVersion="17" 12 <uses-sdk android:minSdkVersion="19" android:targetSdkVersion="19" />
boliu 2015/06/18 20:26:58 this doesn't exist anymore: https://codereview.chr
aurimas (slooooooooow) 2015/06/18 21:37:54 Done
13 android:targetSdkVersion="19" />
14 13
15 <uses-permission android:name="android.permission.INTERNET" /> 14 <uses-permission android:name="android.permission.INTERNET" />
16 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> 15 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
17 16
18 <application 17 <application
19 android:icon="@drawable/ic_launcher" 18 android:icon="@drawable/ic_launcher"
20 android:label="@string/app_name" 19 android:label="@string/app_name"
21 android:theme="@android:style/Theme.Light" > 20 android:theme="@android:style/Theme.Light" >
22 <activity 21 <activity
23 android:name=".TelemetryActivity" 22 android:name=".TelemetryActivity"
24 android:label="@string/title_activity_telemetry" > 23 android:label="@string/title_activity_telemetry" >
25 <intent-filter> 24 <intent-filter>
26 <action android:name="android.intent.action.MAIN" /> 25 <action android:name="android.intent.action.MAIN" />
27 <category android:name="android.intent.category.LAUNCHER" /> 26 <category android:name="android.intent.category.LAUNCHER" />
28 </intent-filter> 27 </intent-filter>
29 </activity> 28 </activity>
30 <activity 29 <activity
31 android:name=".JankActivity" 30 android:name=".JankActivity"
32 android:label="@string/title_activity_jank" 31 android:label="@string/title_activity_jank"
33 android:noHistory="true"> 32 android:noHistory="true">
34 <intent-filter> 33 <intent-filter>
35 <action android:name="android.intent.action.VIEW" /> 34 <action android:name="android.intent.action.VIEW" />
36 <category android:name="android.intent.category.LAUNCHER" /> 35 <category android:name="android.intent.category.LAUNCHER" />
37 </intent-filter> 36 </intent-filter>
38 </activity> 37 </activity>
39 </application> 38 </application>
40 </manifest> 39 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698