为什么我的 Android 模拟器崩溃了?
我正在开发一个在 Linux 上运行的应用程序。我想将其移植到 Android SDK 模拟器。但每次我启动应用程序时,模拟器都会因分段错误而崩溃。
有人知道为什么在 Android 模拟器上运行的自制程序可能会导致整个模拟器崩溃吗?
I'm developing a application that works on linux. I want to port this to the Android SDK Emulator. But everytime I start the application the emulator crashed with a segmentation fault.
Somebody has any clue why a selfmade program that's running on the Android Emulator could crash the entire emulator?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以发布一些代码示例/正在发生的事情的日志吗?您没有提供足够的信息让我们说明它失败的原因。
我能建议的最好的事情是创建一个新的模拟器(只需点击几下)并尝试在其上部署您的应用程序,可能会尝试不同的版本。
如果您可以发布一些可能导致此问题的日志/代码示例,我们可以提供更好的答案
Can you post up some code examples / logs of what is happening? You don't provide enough information for us to suggest why it would fail.
Best thing I can advise is to create a new emulator (only takes a few clicks) and try deploying your app on that, possibly try a different version.
If you can post up some logs/code examples of what might cause this, we can provide better answers
另一个要尝试的调试点是在模拟器上启动演示应用程序/Hello Android,以查看它是否是您的应用程序。
Another debugging point to try would be launching a demo application/Hello Android on the emulator, to see if it is your application specifically.
显然我使用的模拟器版本存在错误。当我更新模拟器到最新版本后,问题就解决了。
Apparently there was a bug in the version of the emulator that I used. When I updated the emulator to the latest version, it was solved.