Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想分析来自 Android NDK 的堆栈跟踪。请问如何在Windows机器上阅读它?
我知道有一个 python 脚本,但我很难在 Windows 7 上运行它。
您可以通过在 cmd 中运行以下命令来进行堆栈跟踪:
adb logcat | C:\path\to\one\of\your\ndks\ndk-stack -sym C:\path\to\your\project\app\build\intermediates\cmake\debug\obj\armeabi-v7a
当然,您应该根据您正在调试的 android 设备,在 obj 文件夹中选择任何其他架构版本,而不是 armeabi-v7a。