AndroidManifest.xml (1737B)
1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- This Source Code Form is subject to the terms of the Mozilla Public 3 - License, v. 2.0. If a copy of the MPL was not distributed with this 4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> 5 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 6 xmlns:tools="http://schemas.android.com/tools"> 7 8 <uses-permission android:name="android.permission.INTERNET" /> 9 <uses-permission android:name="android.permission.FOREGROUND_SERVICE" /> 10 <uses-permission android:name="android.permission.FOREGROUND_SERVICE_SPECIAL_USE" /> 11 12 <application 13 android:name="org.mozilla.samples.crash.CrashApplication" 14 android:allowBackup="true" 15 android:fullBackupContent="@xml/backup_rules" 16 android:icon="@mipmap/ic_launcher" 17 android:roundIcon="@mipmap/ic_launcher_round" 18 android:label="@string/app_name" 19 android:supportsRtl="true" 20 android:theme="@style/Theme.Material3.DayNight" 21 android:dataExtractionRules="@xml/data_extraction_rules" 22 tools:targetApi="s" 23 tools:ignore="DataExtractionRules"> 24 <activity android:name="org.mozilla.samples.crash.CrashActivity" 25 android:launchMode="singleTask" 26 android:exported="true"> 27 <intent-filter> 28 <action android:name="android.intent.action.MAIN" /> 29 30 <category android:name="android.intent.category.LAUNCHER" /> 31 </intent-filter> 32 </activity> 33 34 <service android:name="org.mozilla.samples.crash.CrashService" 35 android:foregroundServiceType="specialUse" 36 android:process=":samples.crash.service" /> 37 </application> 38 </manifest>