| OLD | NEW |
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- Copyright (c) 2015 The Chromium Authors. All rights reserved. Use of | 2 <!-- Copyright (c) 2015 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 | 5 |
| 6 <manifest xmlns:android="http://schemas.android.com/apk/res/android" | 6 <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 7 package="org.chromium.customtabsclient.test" | 7 package="org.chromium.customtabs.test" |
| 8 android:versionCode="1" | 8 android:versionCode="1" |
| 9 android:versionName="1.0"> | 9 android:versionName="1.0"> |
| 10 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="22" /> | 10 <uses-sdk android:minSdkVersion="21" android:targetSdkVersion="22" /> |
| 11 | 11 |
| 12 <application> | 12 <uses-permission android:name="android.permission.INTERNET" /> |
| 13 |
| 14 <application android:label="CustomTabsBenchmark"> |
| 13 <activity android:name="org.chromium.customtabs.test.MainActivity" | 15 <activity android:name="org.chromium.customtabs.test.MainActivity" |
| 14 android:label="MainActivity"> | 16 android:label="CustomTabsBenchmark"> |
| 15 <intent-filter> | 17 <intent-filter> |
| 16 <action android:name="android.intent.action.MAIN" /> | 18 <action android:name="android.intent.action.MAIN" /> |
| 17 <category android:name="android.intent.category.LAUNCHER" /> | 19 <category android:name="android.intent.category.LAUNCHER" /> |
| 18 </intent-filter> | 20 </intent-filter> |
| 19 </activity> | 21 </activity> |
| 22 <activity android:name="org.chromium.customtabs.test.WebViewActivity" |
| 23 android:label="WebViewActivity" |
| 24 android:exported="false"/> |
| 20 </application> | 25 </application> |
| 21 </manifest> | 26 </manifest> |
| OLD | NEW |