Android debug包运行正常,release包崩溃 解决办法
1. 添加配置调试release包,这样的抓取的log日志,这种方式可以知道具体错误,(无法精准到是哪一行)
/在 AndroidManifest.xml 文件的 application 标签中
添加以下配置,即可在release包下的日志了/
android:debuggable="true"
tools:ignore="HardcodedDebugMode"
2.debu