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