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

Side by Side Diff: android_webview/apk/java/AndroidManifest.xml

Issue 802453002: [android_webview] Split out an apk folder from the glue folder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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 | « android_webview/android_webview.gyp ('k') | android_webview/apk/java/proguard.flags » ('j') | 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 <!-- 2 <!--
3 Copyright (c) 2012 The Chromium Authors. All rights reserved. Use of this 3 Copyright (c) 2012 The Chromium Authors. All rights reserved. Use of this
4 source code is governed by a BSD-style license that can be found in the 4 source code is governed by a BSD-style license that can be found in the
5 LICENSE file. 5 LICENSE file.
6 --> 6 -->
7
8 <!-- Please keep this in sync with the downstream android_webview manifest.
9 -->
7 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 10 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
8 package="com.android.webview"> 11 package="com.android.webview">
9 <uses-sdk android:minSdkVersion="21" 12 <uses-sdk android:minSdkVersion="21"
10 android:targetSdkVersion="21"> 13 android:targetSdkVersion="21">
11 </uses-sdk> 14 </uses-sdk>
12 15
13 <uses-feature android:name="android.hardware.touchscreen" 16 <uses-feature android:name="android.hardware.touchscreen"
14 android:required="false"/> 17 android:required="false"/>
15 18
16 <application android:label="Android System WebView" 19 <application android:label="Android System WebView"
17 android:icon="@drawable/icon_webview" 20 android:icon="@drawable/icon_webview"
18 android:multiArch="true"> 21 android:multiArch="true">
19 </application> 22 </application>
20 </manifest> 23 </manifest>
OLDNEW
« no previous file with comments | « android_webview/android_webview.gyp ('k') | android_webview/apk/java/proguard.flags » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698