<manifest xmlns:android="http://schemas.android.com/apk/res/android"
          package="org.mozilla.geckoview_example">

    <application android:allowBackup="true"
                 android:label="@string/app_name"
                 android:supportsRtl="true">

        <uses-library android:name="android.test.runner" />

        <activity android:name="org.mozilla.geckoview_example.GeckoViewActivity"
                  android:label="GeckoViewActivity"
                  android:windowSoftInputMode="stateUnspecified|adjustResize"
                  android:launchMode="singleTop">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
                <category android:name="android.intent.category.MULTIWINDOW_LAUNCHER"/>
                <category android:name="android.intent.category.APP_BROWSER" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>

            <intent-filter>
                <action android:name="android.intent.action.VIEW" />
                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE" />
                <data android:scheme="http" />
                <data android:scheme="https" />
                <data android:scheme="about" />
                <data android:scheme="javascript" />
            </intent-filter>
        </activity>

    </application>

</manifest>
