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:label="com.android.angle" 13 android:extractNativeLibs="false" 14 android:forceQueryable="true" 15 android:multiArch="true"> 16 17 <activity android:name="com.android.angle.EmptyMainActivity" 18 android:label="Empty Main Activity" 19 android:visibleToInstantApps="true" 20 android:launchMode="singleTask" 21 android:exported="true"> 22 23 <intent-filter> 24 <action android:name="android.intent.action.MAIN"/> 25 <category android:name="android.intent.category.INFO"/> 26 </intent-filter> 27 28 <!-- Indicate that this PKG is ANGLE. --> 29 <intent-filter android:priority="1"> 30 <action android:name="android.app.action.ANGLE_FOR_ANDROID" /> 31 <category android:name="android.intent.category.DEFAULT" /> 32 </intent-filter> 33 34 </activity> 35 </application> 36</manifest> 37