| OLD | NEW |
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 | 2 |
| 3 <!-- Copyright 2015 The Chromium Authors. All rights reserved. | 3 <!-- Copyright 2015 The Chromium Authors. All rights reserved. |
| 4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
| 5 found in the LICENSE file. --> | 5 found in the LICENSE file. --> |
| 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="{{manifest_package}}"> | 8 package="{{manifest_package}}"> |
| 9 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="21" /> | 9 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="21" /> |
| 10 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> | 10 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 <category android:name="android.intent.category.APP_BROWSER" /> | 29 <category android:name="android.intent.category.APP_BROWSER" /> |
| 30 </intent-filter> | 30 </intent-filter> |
| 31 <intent-filter> | 31 <intent-filter> |
| 32 <action android:name="android.intent.action.VIEW" /> | 32 <action android:name="android.intent.action.VIEW" /> |
| 33 <category android:name="android.intent.category.DEFAULT" /> | 33 <category android:name="android.intent.category.DEFAULT" /> |
| 34 <category android:name="android.intent.category.BROWSABLE" /> | 34 <category android:name="android.intent.category.BROWSABLE" /> |
| 35 <data android:scheme="http" /> | 35 <data android:scheme="http" /> |
| 36 <data android:scheme="https" /> | 36 <data android:scheme="https" /> |
| 37 </intent-filter> | 37 </intent-filter> |
| 38 </activity> | 38 </activity> |
| 39 <activity android:name="org.chromium.blimp.settings.Preferences"/> |
| 39 | 40 |
| 40 <meta-data android:name="com.google.android.gms.version" | 41 <meta-data android:name="com.google.android.gms.version" |
| 41 android:value="@integer/google_play_services_version" /> | 42 android:value="@integer/google_play_services_version" /> |
| 42 </application> | 43 </application> |
| 43 </manifest> | 44 </manifest> |
| OLD | NEW |