Path: blob/main_old/android/AndroidManifest.xml
1693 views
<?xml version="1.0" encoding="utf-8"?>1<!--2Copyright 2021 The ANGLE Project Authors. All rights reserved. Use of this3source code is governed by a BSD-style license that can be found in the4LICENSE file.5-->67<manifest xmlns:android="http://schemas.android.com/apk/res/android"8xmlns:tools="http://schemas.android.com/tools"9package="com.android.angle">1011<application android:label="com.android.angle"12android:extractNativeLibs="false"13android:forceQueryable="true"14android:multiArch="true">1516<activity android:name="com.android.angle.EmptyMainActivity"17android:label="Empty Main Activity"18android:visibleToInstantApps="true"19android:launchMode="singleTask"20android:exported="true">2122<intent-filter>23<action android:name="android.intent.action.MAIN"/>24<category android:name="android.intent.category.INFO"/>25</intent-filter>2627<!-- Indicate that this PKG is ANGLE. -->28<intent-filter android:priority="1">29<action android:name="android.app.action.ANGLE_FOR_ANDROID" />30<category android:name="android.intent.category.DEFAULT" />31</intent-filter>3233</activity>34</application>35</manifest>363738