Flutter将堆栈轨迹写入逻辑删除



我在应用程序冻结和崩溃的地方不断收到这些错误。

如何复制:从使用相机和socket_io_client的页面弹出。

错误:

E/libc    ( 6226): Access denied finding property "net.dns1"
E/libc    ( 6226): Access denied finding property "net.dns2"
E/libc    ( 6226): Access denied finding property "net.dns3"
E/libc    ( 6226): Access denied finding property "net.dns4"
D/        ( 6226): PlayerBase::stop() from IPlayer
D/AudioTrack( 6226): stop(2735): called with 5082560 frames delivered
I/crowds.station( 6226): Thread[6,tid=6246,WaitingInMainSignalCatcherLoop,Thread*=0x7eaac55000,peer=0x13540320,"Signal Catcher"]: reacting to signal 3
I/crowds.station( 6226): 
D/TcpOptimizer( 6226): [tcpStateMonitor] poll() fail, ret=-1, nSockets=4, errno=4
I/crowds.station( 6226): Wrote stack traces to tombstoned
Lost connection to device.

有什么办法吗?

日志Access denied finding property "net.dns"是安卓系统中抛出的一个低级别警告,不是应用程序崩溃的原因——这在本线程中也有类似的提及。

另一方面,来自Signal Catcher的signal 3指示应用程序变得没有响应(ANR(。崩溃发生在导致堆栈跟踪写入tombstone的低级别代码中。您可能需要提取tombstone中转储的日志,以确定问题的罪魁祸首。

最新更新