summaryrefslogtreecommitdiffstats
path: root/mobile/android/geckoview_example/src/main/AndroidManifest.xml
blob: 551a4a7db7aafcf7211bc742be2a05d5c266c97d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<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">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

    </application>

</manifest>