OLD | NEW |
1 Google Breakpad for Android | 1 Google Breakpad for Android |
2 =========================== | 2 =========================== |
3 | 3 |
4 This document explains how to use the Google Breakpad client library | 4 This document explains how to use the Google Breakpad client library |
5 on Android, and later generate valid stack traces from the minidumps | 5 on Android, and later generate valid stack traces from the minidumps |
6 it generates. | 6 it generates. |
7 | 7 |
8 This release supports ARM, x86 and MIPS based Android systems. | 8 This release supports ARM, x86 and MIPS based Android systems. |
9 This release requires NDK release r10c or higher. | 9 This release requires NDK release r11c or higher. |
10 | 10 |
11 I. Building the client library: | 11 I. Building the client library: |
12 =============================== | 12 =============================== |
13 | 13 |
14 The Android client is built as a static library that you can | 14 The Android client is built as a static library that you can |
15 link into your own Android native code. There are two ways to | 15 link into your own Android native code. There are two ways to |
16 build it: | 16 build it: |
17 | 17 |
18 I.1. Building with ndk-build: | 18 I.1. Building with ndk-build: |
19 ----------------------------- | 19 ----------------------------- |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 - Rebuilding the client library unit tests, and running them on a device. | 130 - Rebuilding the client library unit tests, and running them on a device. |
131 - Rebuilding the client library with ndk-build. | 131 - Rebuilding the client library with ndk-build. |
132 - Building, installing and running a test crasher program on a device. | 132 - Building, installing and running a test crasher program on a device. |
133 - Extracting the corresponding minidump, dumping the test program symbols | 133 - Extracting the corresponding minidump, dumping the test program symbols |
134 and generating a stack trace. | 134 and generating a stack trace. |
135 - Checking the generated stack trace for valid source locations. | 135 - Checking the generated stack trace for valid source locations. |
136 | 136 |
137 For more details, please run: | 137 For more details, please run: |
138 | 138 |
139 android/run-checks.sh --help-all | 139 android/run-checks.sh --help-all |
OLD | NEW |