crashhandler/sample/src/main/AndroidManifest.xml
Florian Bouillon ef361a4eaa
fix: Missing required view (#1)
* misc: Renamed `app` to `sample`

* misc: Renamed crashhandler to library

* fix: Missing required view
2022-08-09 18:09:30 +02:00

24 lines
798 B
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:name=".Application"
android:theme="@style/Theme.CrashHandler">
<activity
android:name=".ui.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.ErrorActivity"
android:theme="@style/Theme.CrashHandler"
android:exported="false" />
</application>
</manifest>