| OLD | NEW |
| (Empty) |
| 1 <?xml version="1.0" encoding="utf-8"?> | |
| 2 <!-- | |
| 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 | |
| 5 LICENSE file. | |
| 6 --> | |
| 7 <manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
| 8 package="com.android.webview"> | |
| 9 <uses-sdk android:minSdkVersion="21" | |
| 10 android:targetSdkVersion="21"> | |
| 11 </uses-sdk> | |
| 12 | |
| 13 <uses-feature android:name="android.hardware.touchscreen" | |
| 14 android:required="false"/> | |
| 15 | |
| 16 <application android:label="Android System WebView" | |
| 17 android:icon="@drawable/icon_webview" | |
| 18 android:multiArch="true"> | |
| 19 </application> | |
| 20 </manifest> | |
| OLD | NEW |