aboutsummaryrefslogtreecommitdiff
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml61
1 files changed, 53 insertions, 8 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 95b33ed..4376adc 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -10,7 +10,7 @@
android:versionCode="1"
android:versionName="1.0" >
- <uses-sdk android:minSdkVersion="19" android:targetSdkVersion="24" />
+ <uses-sdk android:minSdkVersion="19" android:targetSdkVersion="28" />
<!-- "Normal" permissions which do not require user prompt -->
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
@@ -31,35 +31,47 @@
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
- android:theme="@android:style/Theme.Light" >
+ android:theme="@android:style/Theme.Light"
+ android:networkSecurityConfig="@xml/network_security_config"
+ android:debuggable="true" >
+ <meta-data android:name="android.webkit.WebView.EnableSafeBrowsing"
+ android:value="true" />
<activity
- android:name=".TelemetryActivity"
+ android:name="org.chromium.webview_shell.TelemetryActivity"
+ android:launchMode="singleTask"
android:label="@string/title_activity_telemetry"
android:exported="true">
</activity>
<activity
- android:name=".TelemetryMemoryPressureActivity"
+ android:name="org.chromium.webview_shell.TelemetryMemoryPressureActivity"
android:launchMode="singleTask"
android:label="@string/title_activity_telemetry"
android:exported="true">
</activity>
<activity
- android:name=".JankActivity"
+ android:name="org.chromium.webview_shell.JankActivity"
android:label="@string/title_activity_jank"
android:noHistory="true"
android:exported="true">
</activity>
<activity
- android:name=".StartupTimeActivity"
+ android:name="org.chromium.webview_shell.StartupTimeActivity"
android:label="@string/title_activity_startup_time"
android:noHistory="true"
android:exported="true">
</activity>
<activity
- android:name=".WebViewBrowserActivity"
+ android:name="org.chromium.webview_shell.WebViewCreateDestroyActivity"
+ android:launchMode="singleTask"
+ android:label="@string/title_activity_create_destroy"
+ android:exported="true">
+ </activity>
+ <activity
+ android:name="org.chromium.webview_shell.WebViewBrowserActivity"
android:label="@string/title_activity_browser"
android:exported="true"
- android:windowSoftInputMode="adjustResize">
+ android:windowSoftInputMode="adjustResize"
+ android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout|density">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
@@ -85,5 +97,38 @@
<data android:mimeType="application/vnd.wap.xhtml+xml"/> <!-- XHTML MP -->
</intent-filter>
</activity>
+ <activity
+ android:name="org.chromium.webview_shell.WebViewLayoutTestActivity"
+ android:label="@string/title_activity_layout_test"
+ android:exported="true">
+ </activity>
+ <activity
+ android:name="org.chromium.webview_shell.WebViewThreadTestActivity"
+ android:label="@string/title_activity_thread_test"
+ android:exported="true">
+ </activity>
+ <activity android:name="org.chromium.test.broker.OnDeviceInstrumentationBroker"
+ android:exported="true"/>
+
+ <activity
+ android:name="org.chromium.webview_shell.PageCyclerTestActivity"
+ android:label="@string/title_activity_page_cycler"
+ android:exported="true">
+ </activity>
+
+ <activity
+ android:name="org.chromium.webview_shell.WebViewTracingActivity"
+ android:label="@string/title_activity_telemetry"
+ android:noHistory="true"
+ android:exported="true">
+ </activity>
+
+ <activity
+ android:name="org.chromium.webview_shell.WebViewAnimationTestActivity"
+ android:noHistory="true"
+ android:exported="true">
+ </activity>
+
+ <uses-library android:name="android.test.runner" />
</application>
</manifest>