mirror of
https://github.com/KitsunePie/AppErrorsTracking.git
synced 2025-09-10 04:54:03 +08:00
39 lines
1.3 KiB
XML
39 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
<uses-permission
|
|
android:name="${applicationId}.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION"
|
|
tools:node="remove" />
|
|
<permission
|
|
android:name="${applicationId}.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION"
|
|
tools:node="remove" />
|
|
|
|
<application
|
|
android:name=".application.DemoApplication"
|
|
android:allowBackup="true"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:localeConfig="@xml/locales_config"
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/Theme.AppErrorsDemo"
|
|
tools:targetApi="tiramisu">
|
|
|
|
<activity
|
|
android:name=".ui.activity.MainActivity"
|
|
android:exported="true">
|
|
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity
|
|
android:name=".ui.activity.MainActivity$MultiProcessActivity"
|
|
android:exported="false"
|
|
android:process=":multi_process" />
|
|
</application>
|
|
</manifest> |