Skip to content

Commit 5266f98

Browse files
konraddysputBacktracejasoncdavis0
authoredNov 11, 2020
3.2.0 Release (#45) iOS integration
* iOS integration - full path * Improved code quality * Unity IDE integration * readme, changelog updates + version bump * Squashed commit of the following: commit 1eea055 Author: Konrad Dysput <konrad.dysput@gmail.com> Date: Thu Sep 17 14:49:55 2020 +0200 Version 3.1.1 - remove random path in stack trace (#44) * - Prevent from extending attributes with report attributes. - Removed randomly generated path to assembly from , - Prevent from multi initialization. * Prevent database from multi initialization * Update CHANGELOG.md * Added TOC and updated iOS details * iOS updates. * iOS Updates Added info about when the crash report is uploaded. * fixed iOS native client * Extended iOS integration * Adjusted C# API * Swift posst processor modification * Comment not supported integration * Unity iOS native attributes * Setup report attributes * cleanup logs * Fixed line endinging in the iOS nativeClient * Preparing production ready integration - handing specific cases * revert Unity standalne plcrashreporter support * Removed mac file * Squashed commit of the following: commit 0fc1aa6 Author: Samy Al Bahra <sbahra@repnop.org> Date: Sun Oct 18 14:58:19 2020 -0400 doc: fix typo in README. commit 5853df4 Author: jasoncdavis0 <jason.davis@enterprisedb.com> Date: Thu Oct 15 11:53:40 2020 -0400 Update CHANGELOG.md commit 3a348bb Author: Konrad Dysput <konrad.dysput@gmail.com> Date: Thu Oct 15 17:47:19 2020 +0200 Version 3.1.2 - PII changes - `BacktraceData` allows to edit list of environment variables collected by `BacktraceAnnotations` - `SourceCode` object description for PII purpose ` `Annotations` class exposes EnvironmentVariableCache dictionary - dictionary that stores environment variables collected by library. For example - to replace `USERNAME` environment variable collected by Backtrace library with random string you can easily edit annotations environment varaible and Backtrace-Untiy will reuse them on report creation. * public environment variables + pii tests * Version update * Updated description for BacktraceData SourceCode integration * Allow user to edit source code integration text * more unit tests + better changelog description * Removed unused meta file * Updated ndk libraries * Changelog update * Added error.type to Unity runtime * uname.sysname update * iOS integration with Backtrace-Cococa objective-c static library * Applied platform to ios lib * Changed attribute to error.type * Updated package version * Updated changelog * Fixed readme conflict * Added support for arm7 * Final library update * Updated readme - disable crashreport api * updated error.type attributes * Updated changelog * Renamed tvOS * Updated changelog * Fixed meta file * Added iOS Native memory details added iOS native memory details. * Promoting to latest * Version update Co-authored-by: Backtrace <backtrace@Backtraces-MacBook-Pro.local> Co-authored-by: jasoncdavis0 <jason.davis@enterprisedb.com>
1 parent 0fc1aa6 commit 5266f98

38 files changed

+509
-107
lines changed
 
-1010 KB
Binary file not shown.
935 KB
Binary file not shown.

‎Android/lib/arm64-v8a/libbacktrace-crashpad.so.meta ‎Android/lib/arm64-v8a/libbacktrace-native.so.meta

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
-650 KB
Binary file not shown.
610 KB
Binary file not shown.

‎Android/lib/armeabi-v7a/libbacktrace-crashpad.so.meta ‎Android/lib/armeabi-v7a/libbacktrace-native.so.meta

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
-1.01 MB
Binary file not shown.
942 KB
Binary file not shown.

‎Android/lib/x86/libbacktrace-crashpad.so.meta ‎Android/lib/x86/libbacktrace-native.so.meta

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Backtrace Unity Release Notes
22

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+
39
## Version 3.1.2
410
- `BacktraceData` allows to edit list of environment variables collected by `BacktraceAnnotations`
511
- `SourceCode` object description for PII purpose
Loading

‎Documentation~/images/dsym-files.png

1.11 MB
Loading
Loading

‎Editor/BacktraceConfigurationEditor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ public override void OnInspectorGUI()
122122

123123
#endif
124124

125-
#if UNITY_ANDROID
125+
#if UNITY_ANDROID || UNITY_IOS
126126
EditorGUILayout.PropertyField(
127127
serializedObject.FindProperty("CaptureNativeCrashes"),
128128
new GUIContent(BacktraceConfigurationLabels.CAPTURE_NATIVE_CRASHES));

‎Editor/Native.meta

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎Editor/Native/Android.meta

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
File renamed without changes.
File renamed without changes.

‎README.md

+78-36
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,21 @@
1+
12
# Backtrace Unity support
23

34
[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.
45

56
[github release]: (https://github.com/backtrace-labs/backtrace-labs/)
67

8+
- [Features Summary <a name="features-summary"></a>](#features-summary--a-name--features-summary----a-)
9+
- [Prerequisites](#prerequisites)
10+
- [Platforms Supported](#platforms-supported)
11+
- [Setup <a name="installation"></a>](#setup--a-name--installation----a-)
12+
- [Android Specific information](#android-specific-information)
13+
- [iOS Specific information](#ios-specific-information)
14+
- [API Overview](#api-overview)
15+
- [Architecture description](#architecture-description)
16+
- [Investigating an Error in Backtrace](#investigating-an-error-in-backtrace)
17+
18+
719
## Usage
820

921
```csharp
@@ -19,15 +31,23 @@ catch(Exception exception){
1931
}
2032
```
2133

22-
# Features Summary <a name="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 <a name="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.
3151

3252
# Prerequisites
3353

@@ -44,7 +64,7 @@ Game Consoles - PlayStation4, Xbox One, Nintendo Switch
4464
There are some differences in capabilities that backtrace-unity provides based on the platform. Major capabilities are summarized as follows:
4565
* 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)
4666
* 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.
4868
* WebGL - Identified by attribute uname.sysname = WebGL. The attribute device.model is currently used to share the browser information.
4969
* 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.
5070
* PlayStation4 - Identified by attribute uname.sysname = PS4
@@ -99,7 +119,7 @@ The following is a reference guide to the Backtrace Client fields:
99119
`${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.
100120
- Create database directory toggle: If toggled, the library will create the offline database directory if the provided path doesn't exists,
101121
- 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.
103123
- Minidump type: Type of minidump that will be attached to Backtrace report in the report generated on Windows machine.
104124
- Attach Unity Player.log: Add Unity player log file to Backtrace report. NOTE: This feature is available only on desktop - Windows/MacOS/Linux.
105125
- 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:
109129
- Retry interval: If the database is unable to send its record, this setting specifies how many seconds the library should wait between retries.
110130
- Maximum retries: If the database is unable to send its record, this setting specifies the maximum number of retries before the system gives up.
111131
- 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
151+
![Create symbols.zip](./Documentation~/images/symbols.png)
152+
153+
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.
166+
![Enable symbols](./Documentation~/images/Disable-ios-unity-crash-reporter.png)
167+
168+
## Debug Symbol upload
169+
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`.
170+
![Enable symbols](./Documentation~/images/xCode-enable-debugging-symbols.png)
171+
172+
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.
173+
174+
![pack symbols](./Documentation~/images/dsym-files.png)
175+
176+
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+
112179

113180
# API Overview
114181

@@ -301,31 +368,6 @@ Notes:
301368
- `BacktraceDatabase` `Count` method will return number of all records stored in database (included deduplicated records),
302369
- `BacktarceDatabase` `Delete` method will remove record (with multiple deduplicated records) at the same time.
303370

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
323-
![Create symbols.zip](./Documentation~/images/symbols.png)
324-
325-
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.
328-
329371
# Architecture description
330372

331373
## BacktraceReport <a name="architecture-BacktraceReport"></a>

‎Runtime/Common/SystemHelper.cs

+6-6
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ internal static bool IsLibraryAvailable(string[] libraries)
6464
/// </summary>
6565
/// <param name="architecture">System architecture</param>
6666
/// <returns>System name</returns>
67-
internal static string Name(string architecture)
67+
internal static string Name()
6868
{
6969
#pragma warning disable CS0618 // Type or member is obsolete
7070
switch (Application.platform)
@@ -80,20 +80,20 @@ internal static string Name(string architecture)
8080
case RuntimePlatform.OSXPlayer:
8181
return "Mac OS";
8282
case RuntimePlatform.PS3:
83-
return "PS3";
83+
return "ps3";
8484
case RuntimePlatform.PS4:
85-
return "PS4";
85+
return "ps4";
8686
case RuntimePlatform.TizenPlayer:
8787
case RuntimePlatform.SamsungTVPlayer:
8888
return "Samsung TV";
8989
case RuntimePlatform.tvOS:
90-
return "Apple tvOS";
90+
return "tvOS";
9191
case RuntimePlatform.WebGLPlayer:
9292
return "WebGL";
9393
case RuntimePlatform.WiiU:
9494
return "WiiU";
9595
case RuntimePlatform.Switch:
96-
return "Switch";
96+
return "switch";
9797
case RuntimePlatform.WindowsEditor:
9898
case RuntimePlatform.WindowsPlayer:
9999
case RuntimePlatform.WSAPlayerARM:
@@ -104,7 +104,7 @@ internal static string Name(string architecture)
104104
case RuntimePlatform.XboxOne:
105105
return "Xbox";
106106
default:
107-
return "NaCl";
107+
return Application.platform.ToString();
108108
}
109109
}
110110

‎Runtime/Json/BacktraceJObject.cs

+2-3
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,13 @@ public object this[string key]
4646
/// <returns>BacktraceJObject JSON representation</returns>
4747
public string ToJson()
4848
{
49-
var stringBuilder = new StringBuilder();
50-
stringBuilder.AppendLine("{");
49+
var stringBuilder = new StringBuilder("{");
5150

5251
var lines = Source.Select(entry => string.Format("\"{0}\": {1}", EscapeString(entry.Key), ConvertValue(entry.Value)));
5352
var content = string.Join(",", lines);
5453

5554
stringBuilder.Append(content);
56-
stringBuilder.AppendLine("}");
55+
stringBuilder.Append("}");
5756

5857
return stringBuilder.ToString();
5958
}

‎Runtime/Model/BacktraceConfiguration.cs

+16-6
Original file line numberDiff line numberDiff line change
@@ -80,18 +80,28 @@ public class BacktraceConfiguration : ScriptableObject
8080
[Tooltip("Try to find game native crashes and send them on Game startup")]
8181
public bool SendUnhandledGameCrashesOnGameStartup = true;
8282

83+
#if UNITY_ANDROID || UNITY_IOS
8384
#if UNITY_ANDROID
84-
/// <summary>
85-
/// Handle ANR events - Application not responding
86-
/// </summary>
87-
[Tooltip("Handle ANR events - Application not responding")]
88-
public bool HandleANR = true;
89-
9085
/// <summary>
9186
/// Capture native NDK Crashes.
9287
/// </summary>
9388
[Tooltip("Capture native NDK Crashes (ANDROID API 21+)")]
89+
#elif UNITY_IOS
90+
/// <summary>
91+
/// Capture native iOS Crashes.
92+
/// </summary>
93+
[Tooltip("Capture native Crashes")]
94+
#endif
95+
9496
public bool CaptureNativeCrashes = true;
97+
#endif
98+
99+
#if UNITY_ANDROID
100+
/// <summary>
101+
/// Handle ANR events - Application not responding
102+
/// </summary>
103+
[Tooltip("Handle ANR events - Application not responding")]
104+
public bool HandleANR = true;
95105

96106
#if UNITY_2019_2_OR_NEWER
97107
/// <summary>

‎Runtime/Model/BacktraceCredentials.cs

+10
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,16 @@ public Uri GetSubmissionUrl()
2727
return uriBuilder.Uri;
2828
}
2929

30+
public Uri GetPlCrashReporterSubmissionUrl()
31+
{
32+
var url = GetSubmissionUrl().ToString();
33+
var plCrashReporterUrl = url.IndexOf("submit.backtrace.io") != -1
34+
? url.Replace("/json", "/plcrash")
35+
: url.Replace("format=json", "format=plcrash");
36+
var uriBuilder = new UriBuilder(plCrashReporterUrl);
37+
return uriBuilder.Uri;
38+
}
39+
3040
/// <summary>
3141
/// Create minidump submission url to Backtrace API
3242
/// </summary>

‎Runtime/Model/BacktraceData.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public class BacktraceData
4545
/// <summary>
4646
/// Version of the C# library
4747
/// </summary>
48-
public const string AgentVersion = "3.1.2";
48+
public const string AgentVersion = "3.2.0";
4949

5050
/// <summary>
5151
/// Application thread details

0 commit comments

Comments
 (0)