| 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" android:targetSdkVersion="23" /> | |
| 14 | |
| 15 <uses-permission android:name="android.permission.INTERNET" /> | |
| 16 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> | |
| 17 <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/> | |
| 18 <uses-permission android:name="android.permission.CAMERA"/> | |
| 19 <uses-permission android:name="android.permission.RECORD_AUDIO"/> | |
| 20 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/> | |
| 21 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> | |
| 22 <uses-permission android:name="android.permission.RUN_INSTRUMENTATION" /> | |
| 23 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> | |
| 24 <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> | |
| 25 | |
| 26 <application | |
| 27 android:icon="@drawable/ic_launcher" | |
| 28 android:label="@string/app_name" | |
| 29 android:theme="@android:style/Theme.Light" > | |
| 30 <activity | |
| 31 android:name=".TelemetryActivity" | |
| 32 android:label="@string/title_activity_telemetry" | |
| 33 android:exported="true"> | |
| 34 </activity> | |
| 35 <activity | |
| 36 android:name=".TelemetryMemoryPressureActivity" | |
| 37 android:launchMode="singleTask" | |
| 38 android:label="@string/title_activity_telemetry" | |
| 39 android:exported="true"> | |
| 40 </activity> | |
| 41 <activity | |
| 42 android:name=".JankActivity" | |
| 43 android:label="@string/title_activity_jank" | |
| 44 android:noHistory="true" | |
| 45 android:exported="true"> | |
| 46 </activity> | |
| 47 <activity | |
| 48 android:name=".StartupTimeActivity" | |
| 49 android:label="@string/title_activity_startup_time" | |
| 50 android:noHistory="true" | |
| 51 android:exported="true"> | |
| 52 </activity> | |
| 53 <activity | |
| 54 android:name=".WebViewBrowserActivity" | |
| 55 android:label="@string/title_activity_browser" | |
| 56 android:exported="true"> | |
| 57 <intent-filter> | |
| 58 <action android:name="android.intent.action.MAIN" /> | |
| 59 <category android:name="android.intent.category.LAUNCHER" /> | |
| 60 </intent-filter> | |
| 61 <!-- Catch intents which do not specify a MIME type --> | |
| 62 <intent-filter> | |
| 63 <action android:name="android.intent.action.VIEW" /> | |
| 64 <category android:name="android.intent.category.DEFAULT" /> | |
| 65 <category android:name="android.intent.category.BROWSABLE" /> | |
| 66 <data android:scheme="http" /> | |
| 67 <data android:scheme="https" /> | |
| 68 </intent-filter> | |
| 69 <!-- Catch intents which do specify a MIME type --> | |
| 70 <intent-filter> | |
| 71 <action android:name="android.intent.action.VIEW" /> | |
| 72 <category android:name="android.intent.category.DEFAULT" /> | |
| 73 <category android:name="android.intent.category.BROWSABLE" /> | |
| 74 <data android:scheme="http" /> | |
| 75 <data android:scheme="https" /> | |
| 76 <data android:mimeType="text/html"/> | |
| 77 <data android:mimeType="text/plain"/> | |
| 78 <data android:mimeType="application/xhtml+xml"/> | |
| 79 <data android:mimeType="application/vnd.wap.xhtml+xml"/> <!-- XH
TML MP --> | |
| 80 </intent-filter> | |
| 81 </activity> | |
| 82 <activity | |
| 83 android:name=".WebViewLayoutTestActivity" | |
| 84 android:label="@string/title_activity_layout_test" | |
| 85 android:exported="true"> | |
| 86 </activity> | |
| 87 | |
| 88 <uses-library android:name="android.test.runner" /> | |
| 89 </application> | |
| 90 | |
| 91 <instrumentation android:name="org.chromium.webview_shell.WebViewLayoutTestR
unner" | |
| 92 android:targetPackage="org.chromium.webview_shell" | |
| 93 android:label="Tests for org.chromium.webview_shell" /> | |
| 94 </manifest> | |
| OLD | NEW |