死亡红屏 什么 一个简单的屏幕,当您的应用程序崩溃时显示,而不是正常的崩溃对话框。 它与Flutter中的非常相似。 安装 RedScreenOfDeath是通过JCenter分发的。将依赖项添加到build.gradle文件中。 该库还有一个no-op实现,您可以使用它来简化从发行版本中剥离它的过程。 在您的build.gradle : repositories { jcenter() } dependencies { debugImplementation ' com.melegy.redscreenofdeath:red-screen-of-death:0.1.2 ' releaseImplementation ' com.melegy.redscreenofdeath:red-screen-of-death-no-op:0.1.2 ' } 在您的Applica