OLD | NEW |
---|---|
(Empty) | |
1 <!-- | |
2 * Copyright 2013 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 xmlns:android="http://schemas.android.com/apk/res/android" | |
8 package="org.chromium.webview_shell" | |
9 android:versionCode="1" | |
10 android:versionName="1.0" > | |
11 | |
12 <uses-sdk android:minSdkVersion="17" | |
Torne
2015/04/13 12:41:59
Does this need to be 17 for some particular reason
timvolodine
2015/04/13 22:04:06
Done.
| |
13 android:targetSdkVersion="22" /> | |
14 | |
15 <uses-permission android:name="android.permission.INTERNET" /> | |
16 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> | |
17 | |
18 <application | |
Torne
2015/04/13 12:41:59
nit: inconsistent indentation in this file
timvolodine
2015/04/13 22:04:05
Done.
| |
19 android:icon="@drawable/ic_launcher" | |
20 android:label="@string/app_name" | |
21 android:theme="@android:style/Theme.Light" > | |
22 <activity | |
23 android:name=".TelemetryActivity" | |
24 android:label="@string/title_activity_telemetry" | |
25 android:exported="true"> | |
26 </activity> | |
27 <activity | |
28 android:name=".JankActivity" | |
29 android:label="@string/title_activity_jank" | |
30 android:noHistory="true" | |
31 android:exported="true"> | |
32 </activity> | |
33 <activity | |
34 android:name=".StartupTimeActivity" | |
35 android:label="@string/title_activity_startup_time" | |
36 android:noHistory="true" | |
37 android:exported="true"> | |
38 </activity> | |
39 <activity | |
40 android:name=".WebViewBrowserActivity" | |
41 android:label="@string/title_activity_browser" | |
42 android:exported="true"> | |
43 <intent-filter> | |
44 <action android:name="android.intent.action.VIEW" /> | |
45 <category android:name="android.intent.category.DEFAULT" /> | |
46 <category android:name="android.intent.category.BROWSABLE" /> | |
47 <data android:scheme="http" /> | |
48 <data android:scheme="https" /> | |
49 </intent-filter> | |
50 </activity> | |
51 </application> | |
52 </manifest> | |
OLD | NEW |