xref: /aosp_15_r20/external/angle/android/AndroidManifest.xml (revision 8975f5c5ed3d1c378011245431ada316dfb6f244)
1<?xml version="1.0" encoding="utf-8"?>
2<!--
3  Copyright 2021 The ANGLE Project Authors. All rights reserved.  Use of this
4  source code is governed by a BSD-style license that can be found in the
5  LICENSE file.
6-->
7
8<manifest xmlns:android="http://schemas.android.com/apk/res/android"
9          xmlns:tools="http://schemas.android.com/tools"
10          package="com.android.angle">
11
12    <application android:allowBackup="false"
13                 android:label="com.android.angle"
14                 android:extractNativeLibs="false"
15                 android:forceQueryable="true"
16                 android:multiArch="true">
17
18        <activity android:name="com.android.angle.EmptyMainActivity"
19                  android:label="Empty Main Activity"
20                  android:visibleToInstantApps="true"
21                  android:launchMode="singleTask"
22                  android:exported="true">
23
24            <intent-filter>
25                <action android:name="android.intent.action.MAIN"/>
26                <category android:name="android.intent.category.INFO"/>
27            </intent-filter>
28
29            <!-- Indicate that this PKG is ANGLE. -->
30            <intent-filter android:priority="1">
31                <action android:name="android.app.action.ANGLE_FOR_ANDROID" />
32                <category android:name="android.intent.category.DEFAULT" />
33            </intent-filter>
34
35        </activity>
36    </application>
37</manifest>
38