-
Notifications
You must be signed in to change notification settings - Fork 207
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2035 from bugsnag/PLAT-12075/ndk-metadata-iterator
NDK metadata iterator
- Loading branch information
Showing
3 changed files
with
84 additions
and
213 deletions.
There are no files selected for viewing
80 changes: 1 addition & 79 deletions
80
bugsnag-plugin-android-ndk/src/androidTest/resources/event_serialization.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,79 +1 @@ | ||
{ | ||
"context": "Foo", | ||
"metaData": {}, | ||
"severity": "info", | ||
"unhandled": true, | ||
"severityReason": { | ||
"unhandledOverridden": false, | ||
"type": "signal", | ||
"attributes": { | ||
"signalType": "SIGSEGV" | ||
} | ||
}, | ||
"exceptions": [ | ||
{ | ||
"errorClass": "SIGSEGV", | ||
"message": "Whoops!", | ||
"type": "c", | ||
"stacktrace": [ | ||
{ | ||
"frameAddress": "0x0", | ||
"symbolAddress": "0x0", | ||
"loadAddress": "0x0", | ||
"lineNumber": 58, | ||
"isPC": true, | ||
"file": "Something.c", | ||
"method": "foo()" | ||
} | ||
] | ||
} | ||
], | ||
"user": { | ||
"id": "123", | ||
"name": "Bob Bobbiton", | ||
"email": "[email protected]" | ||
}, | ||
"app": { | ||
"version": "1.0", | ||
"id": "fa02", | ||
"type": "C", | ||
"releaseStage": "dev", | ||
"versionCode": 55, | ||
"buildUUID": "123", | ||
"binaryArch": "x86", | ||
"duration": 9019, | ||
"durationInForeground": 7017, | ||
"inForeground": true, | ||
"isLaunching": true | ||
}, | ||
"device": { | ||
"osName": "android", | ||
"id": "my-id-123", | ||
"locale": "en", | ||
"osVersion": "9.1", | ||
"manufacturer": "Google", | ||
"model": "Nexus", | ||
"orientation": "portrait", | ||
"runtimeVersions": { | ||
"androidApiLevel": 0, | ||
"osBuild": "" | ||
}, | ||
"cpuAbi": [], | ||
"totalMemory": 1095092340, | ||
"jailbroken": true, | ||
"time": "1970-01-01T02:06:49Z" | ||
}, | ||
"breadcrumbs": [], | ||
"groupingHash": "Bar", | ||
"usage": { | ||
"callbacks": {} | ||
}, | ||
"session": { | ||
"id": "", | ||
"startedAt": "", | ||
"events": { | ||
"handled": 0, | ||
"unhandled": 0 | ||
} | ||
} | ||
} | ||
{"context":"Foo","metaData":{},"severity":"info","unhandled":true,"severityReason":{"unhandledOverridden":false,"type":"signal","attributes":{"signalType":"SIGSEGV"}},"exceptions":[{"errorClass":"SIGSEGV","message":"Whoops!","type":"c","stacktrace":[{"frameAddress":"0x0","symbolAddress":"0x0","loadAddress":"0x0","lineNumber":58,"isPC":true,"file":"Something.c","method":"foo()"}]}],"user":{"id":"123","name":"Bob Bobbiton","email":"[email protected]"},"app":{"version":"1.0","id":"fa02","type":"C","releaseStage":"dev","versionCode":55,"buildUUID":"123","binaryArch":"x86","duration":9019,"durationInForeground":7017,"inForeground":true,"isLaunching":true},"device":{"osName":"android","id":"my-id-123","locale":"en","osVersion":"9.1","manufacturer":"Google","model":"Nexus","orientation":"portrait","runtimeVersions":{"androidApiLevel":0,"osBuild":""},"cpuAbi":[],"totalMemory":1095092340,"jailbroken":true,"time":"1970-01-01T02:06:49Z"},"breadcrumbs":[],"groupingHash":"Bar","usage":{"callbacks":{}},"threads":[]} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters