You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CHANGELOG.md
+6
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,11 @@
1
1
# Backtrace Unity Release Notes
2
2
3
+
## Version 3.2.0
4
+
- This release adds the ability to capture native iOS crashes from Unity games deployed to iOS. The Backtrace Configuration now exposes a setting for games being prepared for iOS to choose `Capture native crashes`. When enabled, the backtrace-unity client will capture and submit native iOS crashes to the configured Backtrace instance. To generate human readable callstacks, game programmers will need to generate and upload appropriate debug symbols.
5
+
- Added default uname.sysname attributes for some platforms. The following is the list of uname.sysname platforms that can be populated. list "Android, IOS, Linux, Mac OS, ps3, ps4, Samsung TV, tvOS, WebGL, WiiU, Switch, Xbox". Note 'Switch' had previously been reported as 'switch'
6
+
- Added a new attribute 'error.type' that allows developers to quickly filter error reports based on the type of error - The list includes "Crash, Message, Hang, Unhandled Exception, Exception".
7
+
- Updated Android NDK libraries used by Unity plugin.
8
+
3
9
## Version 3.1.2
4
10
-`BacktraceData` allows to edit list of environment variables collected by `BacktraceAnnotations`
Copy file name to clipboardexpand all lines: README.md
+78-36
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,21 @@
1
+
1
2
# Backtrace Unity support
2
3
3
4
[Backtrace](http://backtrace.io/)'s integration with Unity allows developers to capture and report handled and unhandled Unity exceptions and crashes to their Backtrace instance, instantly offering the ability to prioritize and debug software errors.
-[Investigating an Error in Backtrace](#investigating-an-error-in-backtrace)
17
+
18
+
7
19
## Usage
8
20
9
21
```csharp
@@ -19,15 +31,23 @@ catch(Exception exception){
19
31
}
20
32
```
21
33
22
-
# Features Summary <aname="features-summary"></a>
23
-
24
-
- Light-weight Unity client that quickly submits crashed generated in Unity environment to your Backtrace dashboard
25
-
- Can include callstack, system metadata, custom metadata, custom attributes and file attachments if needed
26
-
- Supports a wide range of unity version and environments
27
-
- Supports .NET 2.0/3.5/4.5/Standard 2.0 Backend, IL2CPP and Mono environments
28
-
- Supports offline database for error report storage and re-submission in case of network outage
29
-
- Fully customizable and extendable event handlers
30
-
- Custom IDE integrations
34
+
# Feature Summary <aname="features-summary"></a>
35
+
36
+
- Lightweight library that quickly submits handled and unhandled exceptions and crashes to Backtrace
37
+
- Supports wide range of Unity versions (2017.4+) and deployments (iOS, Android, Windows, Mac, WebGL, PS4, Xbox, Switch, Stadia)
38
+
- Install via Universal Package Manager
39
+
- Collect detailed context
40
+
- Callstacks, including function names and line numbers where possible
41
+
- System metadata including device GUID, OS version, memory usage, process age
42
+
- Custom metadata including app version, scene info, device drivers
43
+
- Last # log lines, screenshots, log or config files, other attachments
44
+
- Android NDK Crashes; iOS Native Crashes, Windows Native Crashes
45
+
- Client-side features
46
+
- Deduplication options and custom client side fingerprinting
47
+
- Offline crash capture/storage for future collection
48
+
- Customizable event handlers and base classes, Client side filters
49
+
- Performance statistics collection option for timing observability
50
+
- Unity IDE integration to configure Backtrace behaviors in your game.
31
51
32
52
# Prerequisites
33
53
@@ -44,7 +64,7 @@ Game Consoles - PlayStation4, Xbox One, Nintendo Switch
44
64
There are some differences in capabilities that backtrace-unity provides based on the platform. Major capabilities are summarized as follows:
45
65
* All Platforms - Unhandled Exceptions, Handled Exceptions, Custom Indexable Metadata, File Attachments*, Last N Log Lines, Automatic attachment of Screenshots, Client Side Deduplication Rules*, Client Side Submission Filtering, Client Side Submission Limits, Performance Diagnostics, Offline Database*(Except Nintendo Switch)
46
66
* Android -Identified by attribute uname.sysname = Android; ANRs (Hangs), Native Process and Memory Information, Java Exception Handler (Plugins, Exported Game in Android Studio), NDK crashes.
47
-
* iOS - Identified by attribute uname.sysname = IOS
67
+
* iOS - Identified by attribute uname.sysname = IOS; Native Engine and Plugin Crashes.
48
68
* WebGL - Identified by attribute uname.sysname = WebGL. The attribute device.model is currently used to share the browser information.
49
69
* Switch - Identified by attribute uname.sysname = Switch. Note that the attribute GUID is regenerated with each Switch restart (It is not an accurate count of number of Users or Devices. It is a count of Switch Sessions). Note that the current release does no support Offline Database or related features.
50
70
* PlayStation4 - Identified by attribute uname.sysname = PS4
@@ -99,7 +119,7 @@ The following is a reference guide to the Backtrace Client fields:
99
119
`${Application.persistentDataPath}/backtrace/database` to dynamically look up a known directory structure to use. NOTE: Backtrace database will remove all existing files in the database directory upion first initialization.
100
120
- Create database directory toggle: If toggled, the library will create the offline database directory if the provided path doesn't exists,
101
121
- Client-side deduplication: Backtrace-unity plugin allows you to combine the same reports. By using deduplication rules, you can tell backtrace-unity plugin how we should merge reports.
102
-
- Capture native crashes: This option will appear for games being deployed to Android and will allow Backtrace to capture and symbolicate native stack traces from crashes impacting the Unity Engine or any Unity Engine Plugin.
122
+
- Capture native crashes: This option will appear for games being deployed to Android or iOS and will allow Backtrace to capture and symbolicate native stack traces from crashes impacting the Unity Engine or any Unity Plugin.
103
123
- Minidump type: Type of minidump that will be attached to Backtrace report in the report generated on Windows machine.
104
124
- Attach Unity Player.log: Add Unity player log file to Backtrace report. NOTE: This feature is available only on desktop - Windows/MacOS/Linux.
105
125
- Attach screenshot: Generate and attach screenshot of frame as exception occurs.
@@ -109,6 +129,53 @@ The following is a reference guide to the Backtrace Client fields:
109
129
- Retry interval: If the database is unable to send its record, this setting specifies how many seconds the library should wait between retries.
110
130
- Maximum retries: If the database is unable to send its record, this setting specifies the maximum number of retries before the system gives up.
111
131
- Retry order: This specifies in which order records are sent to the Backtrace server.
132
+
# Android Specific information
133
+
134
+
The backtrace-unity library includes support for capturing Android NDK crashes and additional Android Native information, from underlying Android OS (Memory and process related), JNI, and NDK layers.
135
+
136
+
## Native process and memory related information
137
+
138
+
system.memory usage related information including memfree, swapfree, and vmalloc.used is now available. Additional VM details and voluntary / nonvountary ctxt switches are included.
139
+
140
+
## ANR
141
+
142
+
When configuring the backtrace-unity client for an Android deployment, programmers will have a toggle available in backtrace-unity GUI in the Unity Editor to enable or disable ANR reports. This will use the default of 5 seconds.
143
+
144
+
## Symbols upload
145
+
146
+
Unity allows developer to generate symbols archive called `symbols.zip` in the il2cpp build pipeline in the root directory of your game. In this archive you can find generated symbols for your game libraries. When your game crashes due to a native exception, your stack trace will contain only memory addresses instead of function name. Symbols from `symbols.zip` archive allows Backtrace to match function address to function name in your source code.
147
+
148
+
To generate `symbols.zip` archive make sure:
149
+
* you selected il2cpp build,
150
+
* you checked `Create symbols.zip` in the Build settings window
To upload symbols to Backtrace, you need to rename symbols generated by Unity end simply with a `.so` extension. By default, symbol files within the .zip will end with extension `.sym.so`. or `.dbg.so` Backtrace will only match symbols to files based on the ending with `.so` extension. Please ensure all files have a single `.so` extention before uploading the zip. To upload symbols please go to your project settings, to the `Upload an archive` tab under `Symbols` section.
154
+
155
+
Backtrace offers to upload symbols automatically from Unity Editor to your Backtrace instance. Backtrace symbols upload pipeline will be triggered after successfull build of il2cpp Android game and when Symbols upload token is available in Backtrace Client options. After successfull build, upload pipeline will confirm symbols upload.
156
+
157
+
# iOS Specific information
158
+
The backtrace-unity library includes support for capturing native iOS crashes as well as iOS native memory and process information from underlying iOS layer.
159
+
160
+
## Native process and memory related information
161
+
162
+
system and vm usage related information including system.memory.free, system.memory.used, system.memory.total, system.memory.active, system.memory.inactive, system.memory.wired are avaialble.
163
+
164
+
## Native Crashes
165
+
When configuring the backtrace-unity client for an iOS deployment in the Unity Editor, programmers will have a toggle to enable or disable `Capture native crashes`. If this is enabled, the backtrace-unity client will ensure the crash report is generated, stored locally, and uploaded upon next game start. Unity crash reporter might prevent Backtrace Crash reporte from sending crashes to Backtrace. To be sure Backtrace is able to collect and send data please set "Enable CrashReport API" to false.
When building your iOS game in Xcode, you must make sure you configure the build settings to generate "`DWARF with dSYM files` for any build that you want to debug with Backtrace (By default, it may only generate `DWARF`). In the example below, `DWARF with dSYM files` is enabled in the `Project Build Settings` for each `Target`.
This change will generate dSYM files every time you build your game in Xcode. You can find the files in the `...\Build\Products\<the folder representing your build>`. Within there will be dSYM files that you should compress into a .zip file and submit to Backtrace for use during symbolication.
To learn more about how to submit those symbol files to Backtrace, please see the Project Settings / Symbols. You can manage submission tokens, upload via the UI, or configure external Symbol Servers to connect and discover required symbols. Please review additional Symbol documentaion at https://support.backtrace.io/hc/en-us/articles/360040517071-Symbolication-Overview
177
+
178
+
112
179
113
180
# API Overview
114
181
@@ -301,31 +368,6 @@ Notes:
301
368
-`BacktraceDatabase``Count` method will return number of all records stored in database (included deduplicated records),
302
369
-`BacktarceDatabase``Delete` method will remove record (with multiple deduplicated records) at the same time.
303
370
304
-
# Android Specific information
305
-
306
-
The backtrace-unity library includes support for capturing additional Android Native information, from underlying Android OS (Memory and process related), JNI, and NDK layers.
307
-
308
-
## Native process and memory related information
309
-
310
-
system.memory usage related information including memfree, swapfree, and vmalloc.used is now available. Additional VM details and voluntary / nonvountary ctxt switches are included.
311
-
312
-
## ANR
313
-
314
-
When configuring the backtrace-unity client for an Android deployment, programmers will have a toggle available in backtrace-unity GUI in the Unity Editor to enable or disable ANR reports. This will use the default of 5 seconds.
315
-
316
-
## Symbols upload
317
-
318
-
Unity allows developer to generate symbols archive called `symbols.zip` in the il2cpp build pipeline in the root directory of your game. In this archive you can find generated symbols for your game libraries. When your game crashes due to a native exception, your stack trace will contain only memory addresses instead of function name. Symbols from `symbols.zip` archive allows Backtrace to match function address to function name in your source code.
319
-
320
-
To generate `symbols.zip` archive make sure:
321
-
* you selected il2cpp build,
322
-
* you checked `Create symbols.zip` in the Build settings window
To upload symbols to Backtrace, you need to rename symbols generated by Unity end simply with a `.so` extension. By default, symbol files within the .zip will end with extension `.sym.so`. or `.dbg.so` Backtrace will only match symbols to files based on the ending with `.so` extension. Please ensure all files have a single `.so` extention before uploading the zip. To upload symbols please go to your project settings, to the `Upload an archive` tab under `Symbols` section.
326
-
327
-
Backtrace offers to upload symbols automatically from Unity Editor to your Backtrace instance. Backtrace symbols upload pipeline will be triggered after successfull build of il2cpp Android game and when Symbols upload token is available in Backtrace Client options. After successfull build, upload pipeline will confirm symbols upload.
0 commit comments