This demo app shows how to use Breakpad with HockeyApp on Android. The app consists of both Java and C/C++ code (using the NDK). Crashes in C/C++ are handled by Breakpad and then uploaded to HockeyApp for further processing.
-
Clone this repository:
cd ~/Projects git clone git:https://github.com/ashtom/breakapp.git
-
Checkout Google Breakpad in the same directory:
svn checkout https://google-breakpad.googlecode.com/svn/trunk/ Breakpad
-
Build Breakpad:
cd ~/Projects/Breakpad ./configure && make
-
Build the native code:
cd ~/Projects/BreakApp ndk-build
-
Open the Java project in Eclipse and run it on your Android device.
- If you want to see the crashes in your HockeyApp account, please adjust the value of HOCKEYAPP_ID in MainActivity.java.
- As usual, crashes are sent at the next start of the app.
- The minidump file is processed on HockeyApp and inserted into the crash log for grouping and further inspection. This might take a minute or two.
- Stack traces are not symbolicated. You can download the minidump file from the "Meta" tab to symbolicate on your machine.