beakpad庫連接linux
https://github.com/xfmax/FixedBreakPadandroid
qt android c++
https://github.com/wk8/qt-breakpadgit
https://github.com/JPNaude/dev_notes/wiki/Using-Google-Breakpad-with-Qtgithub
android ndk使用如下方法ubuntu
直接使用庫:https://github.com/yinyinnie/breakpad-for-android/sample/breakpad/libs/vim
使用r12b ndk 支持armeabi armeabi-v7aui
使用r16b ndk 支持armeabi-v8agoogle
使用過官方的breakpad容易編譯失敗,不少資源被和諧c++11
https://www.jianshu.com/p/4dcbcd06bd90
// 下載c++ 異常捕獲庫 // 參考文檔https://www.jianshu.com/p/c1ff71c9b5ef us@ubuntu:/opt/code/$ git clone https://github.com/yinyinnie/breakpad-for-android us@ubuntu:/opt/code/breakpad-for-android/third_party$ https://github.com/xfmax/FixedBreakPad // 官方地址,須要依賴過多不建議使用 git clone https://github.com/google/breakpad.git https://github.com/alateeq99/linux-syscall-support/tree/master/lss // 下載qml 異常捕獲庫 us@ubuntu:/opt/code/$ git clone https://github.com/zhengtianzuo/QtQuickExamples/tree/master/QmlLog4Qml us@ubuntu:/opt/code/breakpad-for-android$ vim Application.mk 1 APP_STL := stlport_static 2 APP_ABI := armeabi armeabi-v7a #all #armeabi-v8a支持有問題,根據須要的進行支持 3 APP_CXXFLAGS := -std=c++11 -D__STDC_LIMIT_MACROS 4 APP_PLATFORM := android-15