设备上的 Android 故障转储数据访问
这可能是一个明显的问题,但我真的不知道如何访问测试时三星设备上发生的故障转储。我看到核心转储,然后看到一些选项,如 #9900 来访问它。它告诉我们文件去了哪里,但我如何从我的电脑访问该目录,或者将其复制到我的电脑。我安装了 kies,我也尝试切换到大容量存储,但我只是不知道如何访问文件系统。谢谢
This might be an obvious question but I really don't see how to access a crash dump that occurs on my Samsung Device when testing. I see core dump and then some options to like #9900 to access it. It tells where the file went, but how do I access the directory from my PC and or copy it over to my PC. I have kies installed I tried switching also to mass storage but I just don't see how to access file system. Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该能够在 Eclipse 中检查 logcat 以查看堆栈跟踪,还可以执行 adb bugreport 以查看物理转储。 adb pull location/of/files 也应该从设备上拉取文件。
You should be able to check logcat in eclipse to see the stack trace and also do adb bugreport to see the physical dump. adb pull location/of/files should also pull files off the device.
尝试:
确保应用程序>开发>USB调试已启用
拔下并重新插入您的设备
重新启动您的设备
重新启动您的计算机
但我有一种感觉,kies 应用程序可能会干扰您的 adb。我知道第三方 Android 工具可能会妨碍官方工具,特别是当它们提供 kies 可能正在做的自己的 adb 可执行文件时。
Try:
Make Sure Application>Development>USB debugging is enabled
Unpluging and re-plugging in your Device
Restarting your Device
Restarting your Computer
But I have a feeling that the kies application maybe interfering with your adb. I know that third party android tools can get in the way of the the official ones, especially when they provide there own adb executables which kies might be doing.