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.
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" >
13 <uses-sdk android:minSdkVersion="19"
14 android:targetSdkVersion="22" />
16 <uses-permission android:name="android.permission.INTERNET" />
17 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
20 android:icon="@drawable/ic_launcher"
21 android:label="@string/app_name"
22 android:theme="@android:style/Theme.Light" >
24 android:name=".TelemetryActivity"
25 android:label="@string/title_activity_telemetry"
26 android:exported="true">
29 android:name=".JankActivity"
30 android:label="@string/title_activity_jank"
31 android:noHistory="true"
32 android:exported="true">
35 android:name=".StartupTimeActivity"
36 android:label="@string/title_activity_startup_time"
37 android:noHistory="true"
38 android:exported="true">
41 android:name=".WebViewBrowserActivity"
42 android:label="@string/title_activity_browser"
43 android:exported="true">
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" />