<?xml version="1.0" encoding="utf-8"?>

<!--
Copyright 2022 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->


<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    package="org.chromium.webengine.shell">

    <application
        android:name="WebEngineShellApplication"
        android:label="WE shell"
        tools:replace="android:label"
        android:supportsRtl="true">
        <activity android:name="WebEngineShellActivity"
                  android:launchMode="singleTask"
                  android:theme="@style/ShellTheme"
                  android:windowSoftInputMode="adjustResize"
                  android:exported="true">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
         <activity android:name="WebEngineStateTestActivity"
                  android:launchMode="singleTask"
                  android:theme="@style/ShellTheme"
                  android:windowSoftInputMode="adjustResize"
                  android:exported="true">
        </activity>
        <activity android:name="WebEngineNavigationTestActivity"
                  android:launchMode="singleTask"
                  android:theme="@style/ShellTheme"
                  android:windowSoftInputMode="adjustResize"
                  android:exported="true">
        </activity>
        <activity android:name="WebEngineNavigationTestActivity$EmptyActivity"
                  android:launchMode="singleTask"
                  android:theme="@style/ShellTheme"
                  android:windowSoftInputMode="adjustResize"
                  android:exported="true">
        </activity>

        <meta-data android:name="org.chromium.webengine.shell.BrowserProcessMode"
                   android:value="{{ browser_process_mode }}"/>
    </application>
</manifest>