OLD | NEW |
(Empty) | |
| 1 <!-- |
| 2 * Copyright 2015 The Chromium Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. |
| 5 --> |
| 6 |
| 7 <manifest |
| 8 xmlns:android="http://schemas.android.com/apk/res/android" |
| 9 package="org.chromium.webview_shell" |
| 10 android:versionCode="1" |
| 11 android:versionName="1.0" > |
| 12 |
| 13 <uses-sdk android:minSdkVersion="19" |
| 14 android:targetSdkVersion="22" /> |
| 15 |
| 16 <uses-permission android:name="android.permission.INTERNET" /> |
| 17 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> |
| 18 |
| 19 <application |
| 20 android:icon="@drawable/ic_launcher" |
| 21 android:label="@string/app_name" |
| 22 android:theme="@android:style/Theme.Light" > |
| 23 <activity |
| 24 android:name=".TelemetryActivity" |
| 25 android:label="@string/title_activity_telemetry" |
| 26 android:exported="true"> |
| 27 </activity> |
| 28 <activity |
| 29 android:name=".JankActivity" |
| 30 android:label="@string/title_activity_jank" |
| 31 android:noHistory="true" |
| 32 android:exported="true"> |
| 33 </activity> |
| 34 <activity |
| 35 android:name=".StartupTimeActivity" |
| 36 android:label="@string/title_activity_startup_time" |
| 37 android:noHistory="true" |
| 38 android:exported="true"> |
| 39 </activity> |
| 40 <activity |
| 41 android:name=".WebViewBrowserActivity" |
| 42 android:label="@string/title_activity_browser" |
| 43 android:exported="true"> |
| 44 <intent-filter> |
| 45 <action android:name="android.intent.action.VIEW" /> |
| 46 <category android:name="android.intent.category.DEFAULT" /> |
| 47 <category android:name="android.intent.category.BROWSABLE" /> |
| 48 <data android:scheme="http" /> |
| 49 <data android:scheme="https" /> |
| 50 </intent-filter> |
| 51 </activity> |
| 52 </application> |
| 53 </manifest> |
OLD | NEW |