README 970 B

123456789101112131415161718192021222324252627282930313233
  1. This is a sample Android executable that can be used to test the
  2. Google Breakpad client library on Android.
  3. Its purpose is simply to crash and generate a minidump under /data/local/tmp.
  4. Build instructions:
  5. cd android/sample_app
  6. $NDK/ndk-build
  7. Where $NDK points to a valid Android NDK installation.
  8. Usage instructions:
  9. After buildind the test program, send it to a device, then run it as
  10. the shell UID:
  11. adb push libs/armeabi/test_google_breakpad /data/local/tmp
  12. adb shell /data/local/tmp/test_google_breakpad
  13. This will simply crash after dumping the name of the generated minidump
  14. file.
  15. See jni/test_breakpad.cpp for details.
  16. Use 'armeabi-v7a' instead of 'armeabi' above to test the ARMv7-A version
  17. of the binary.
  18. Note:
  19. If you plan to use the library in a regular Android application, store
  20. the minidump files either to your app-specific directory, or to the SDCard
  21. (the latter requiring a specific permission).