Created AppErrorsDemo demo-app

This commit is contained in:
2022-05-10 15:35:44 +08:00
parent 7fcf8b36cf
commit 5217146bdd
40 changed files with 866 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
<resources>
<string name="app_name">AppErrorsDemo</string>
<string name="back">Back</string>
<string name="function_desc">The business exception logic in common scenarios is provided here. After activating the Xposed module, you can test whether the exception can be caught here. In order to verify the effectiveness of the Xposed module, the current App does not have any logic code for manually handling exceptions.</string>
<string name="throw_runtime">throw RuntimeException</string>
<string name="throw_illegalstate">throw IllegalStateException</string>
<string name="throw_nullpointer">throw NullPointerException</string>
<string name="throw_exception">throw Exception</string>
<string name="throw_native_error">throw Native Error</string>
</resources>