issue#123 added an option to share crash report

This commit is contained in:
cdhiraj40 2022-03-03 15:19:28 +05:30
parent ca19cb196c
commit 30b1f031ff
6 changed files with 155 additions and 2 deletions

View file

@ -38,8 +38,8 @@
android:name=".activities.MainActivity"
android:exported="true"
android:label="@string/app_name"
android:theme="@style/SplashTheme"
android:launchMode="singleTop">
android:launchMode="singleTop"
android:theme="@style/SplashTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<action android:name="android.intent.action.MUSIC_PLAYER" />
@ -183,6 +183,15 @@
android:value=".activities.MainActivity" />
</activity>
<activity
android:name=".activities.ErrorActivity"
android:exported="true">
<intent-filter>
<action android:name="cat.ereza.customactivityoncrash.RESTART" />
</intent-filter>
</activity>
<provider
android:name=".misc.GenericFileProvider"
android:authorities="${applicationId}.provider"