1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3/* //device/apps/Browser/AndroidManifest.xml 4** 5** Copyright 2006, The Android Open Source Project 6** 7** Licensed under the Apache License, Version 2.0 (the "License"); 8** you may not use this file except in compliance with the License. 9** You may obtain a copy of the License at 10** 11** http://www.apache.org/licenses/LICENSE-2.0 12** 13** Unless required by applicable law or agreed to in writing, software 14** distributed under the License is distributed on an "AS IS" BASIS, 15** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16** See the License for the specific language governing permissions and 17** limitations under the License. 18*/ 19--> 20<manifest xmlns:android="http://schemas.android.com/apk/res/android" 21 package="com.android.htmlviewer" > 22 23 <uses-sdk 24 android:minSdkVersion="35" 25 android:targetSdkVersion="35" /> 26 27 <original-package android:name="com.android.htmlviewer" /> 28 29 <permission 30 android:name="com.android.htmlviewer.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION" 31 android:protectionLevel="signature" /> 32 33 <uses-permission android:name="com.android.htmlviewer.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION" /> 34 35 <application 36 android:appComponentFactory="androidx.core.app.CoreComponentFactory" 37 android:extractNativeLibs="true" 38 android:label="@string/app_label" 39 android:supportsRtl="true" > 40 <activity 41 android:name="com.android.htmlviewer.HTMLViewerActivity" 42 android:exported="true" 43 android:label="@string/app_label" 44 android:theme="@android:style/Theme.DeviceDefault.Settings" > 45 <intent-filter> 46 <category android:name="android.intent.category.DEFAULT" /> 47 48 <action android:name="android.intent.action.VIEW" /> 49 50 <data android:scheme="content" /> 51 <data android:mimeType="text/html" /> 52 <data android:mimeType="text/plain" /> 53 <data android:mimeType="application/xhtml+xml" /> 54 <data android:mimeType="application/vnd.wap.xhtml+xml" /> 55 </intent-filter> 56 </activity> 57 58 <meta-data 59 android:name="android.nfc.disable_beam_default" 60 android:value="true" /> 61 <meta-data 62 android:name="android.max_aspect" 63 android:value="2.1" /> 64 65 <provider 66 android:name="androidx.startup.InitializationProvider" 67 android:authorities="com.android.htmlviewer.androidx-startup" 68 android:exported="false" > 69 </provider> 70 71 <receiver 72 android:name="androidx.profileinstaller.ProfileInstallReceiver" 73 android:directBootAware="false" 74 android:enabled="true" 75 android:exported="true" 76 android:permission="android.permission.DUMP" > 77 <intent-filter> 78 <action android:name="androidx.profileinstaller.action.INSTALL_PROFILE" /> 79 </intent-filter> 80 <intent-filter> 81 <action android:name="androidx.profileinstaller.action.SKIP_FILE" /> 82 </intent-filter> 83 <intent-filter> 84 <action android:name="androidx.profileinstaller.action.SAVE_PROFILE" /> 85 </intent-filter> 86 <intent-filter> 87 <action android:name="androidx.profileinstaller.action.BENCHMARK_OPERATION" /> 88 </intent-filter> 89 </receiver> 90 </application> 91 92</manifest>