mirror of
https://github.com/dzeiocom/crashhandler.git
synced 2025-04-22 19:02:16 +00:00
* misc: Renamed `app` to `sample` * misc: Renamed crashhandler to library * fix: Missing required view
24 lines
798 B
XML
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> |