We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39c809f commit f45ceb8Copy full SHA for f45ceb8
components/lib/crash/src/main/java/mozilla/components/lib/crash/CrashReporter.kt
@@ -118,6 +118,7 @@ class CrashReporter(
118
val intent = Intent(context, CrashReporterActivity::class.java)
119
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK)
120
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK)
121
+ intent.addFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION)
122
123
crash.fillIn(intent)
124
components/lib/crash/src/main/res/values/styles.xml
@@ -4,5 +4,6 @@
4
<item name="windowNoTitle">true</item>
5
<item name="android:windowMinWidthMajor">96%</item>
6
<item name="android:windowMinWidthMinor">96%</item>
7
+ <item name="android:windowAnimationStyle">@null</item>
8
</style>
9
</resources>
0 commit comments