mirror of
https://github.com/element-hq/element-android
synced 2024-11-24 18:35:40 +03:00
Add a debug button to test crash of the app
This commit is contained in:
parent
ddf4a81905
commit
c9fe1adb77
2 changed files with 12 additions and 0 deletions
|
@ -133,5 +133,10 @@ class DebugMenuActivity : VectorBaseActivity() {
|
|||
startActivity(Intent(this, DebugMaterialThemeDarkActivity::class.java))
|
||||
}
|
||||
|
||||
@OnClick(R.id.debug_test_crash)
|
||||
fun testCrash() {
|
||||
throw RuntimeException("Application crashed from user demand")
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -47,6 +47,13 @@
|
|||
android:layout_height="wrap_content"
|
||||
android:text="Test Material theme Dark" />
|
||||
|
||||
<com.google.android.material.button.MaterialButton
|
||||
android:id="@+id/debug_test_crash"
|
||||
style="@style/VectorButtonStyle"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="Crash the app" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
</ScrollView>
|
||||
|
|
Loading…
Reference in a new issue