From f99a50d0a916a7b20a310d808b62f67ac1dcc26f Mon Sep 17 00:00:00 2001 From: alyssa-embrace Date: Mon, 30 Sep 2024 22:43:05 -0700 Subject: [PATCH 1/5] Performance tracing docs update --- docs/unity/features/performance-tracing.md | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/docs/unity/features/performance-tracing.md b/docs/unity/features/performance-tracing.md index c7be97da..47d311f5 100644 --- a/docs/unity/features/performance-tracing.md +++ b/docs/unity/features/performance-tracing.md @@ -31,16 +31,7 @@ There are also no limits to the number of child spans you can have per trace, pr ### Limits -| Type | Limit | -| --- | --- | -| Max number of spans per session | 500 | -| Max number of attributes per span | 50 | -| Max number of events per span | 10 | -| Max number of attributes per event | 10 | -| Length of attribute keys | 50 characters | -| Length of attribute values | 200 characters | -| Length of Span names | 50 characters | -| Length of Event names | 100 characters | +For limits pertaining to each platform, please see the Android limits [here](/android/features/tracing/#limits), and the iOS limits [here](/ios/open-source/tracing/#limits). :::warning Exceeding Limits If you exceed the listed limits, the operation with the limit-exceeding call will fail. See the API documentation for details. From 418e7c1f4d3a38d2809a92725023aef6cb50bcea Mon Sep 17 00:00:00 2001 From: alyssa-embrace Date: Mon, 30 Sep 2024 22:43:47 -0700 Subject: [PATCH 2/5] Moments deprecation notice --- docs/unity/features/moments.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/unity/features/moments.md b/docs/unity/features/moments.md index 5d204b7b..e7b8c3fa 100644 --- a/docs/unity/features/moments.md +++ b/docs/unity/features/moments.md @@ -5,6 +5,9 @@ sidebar_position: 1 --- # Moments +:::info Important +The Moments API is deprecated and no longer supported as of Unity 2.x. Please use Spans instead +::: ## Overview From bc0dd95d107730270fa7148336bae2b862bac148 Mon Sep 17 00:00:00 2001 From: alyssa-embrace Date: Mon, 30 Sep 2024 22:44:39 -0700 Subject: [PATCH 3/5] Download link update --- docs/unity/integration/linking-embrace.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/unity/integration/linking-embrace.md b/docs/unity/integration/linking-embrace.md index 010ad118..4b29b7d6 100644 --- a/docs/unity/integration/linking-embrace.md +++ b/docs/unity/integration/linking-embrace.md @@ -8,7 +8,7 @@ description: Linking Embrace with your application is quick and easy. To install Embrace, download our latest SDK below. -[Download Embrace 1.26.1 for Unity](https://downloads.embrace.io/EmbraceSDK_1.26.1.unitypackage) +[Download Embrace 2.0.0 for Unity](https://downloads.embrace.io/EmbraceSDK_2.0.0.unitypackage) Once downloaded, import the Unity Package by selecting Assets -> Import Package -> Custom Package. From d784d73b80579de868e72274dc086b92ddc9e02f Mon Sep 17 00:00:00 2001 From: alyssa-embrace Date: Mon, 30 Sep 2024 22:45:25 -0700 Subject: [PATCH 4/5] StartSDK note update --- docs/unity/integration/configure-embrace-ios.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/unity/integration/configure-embrace-ios.md b/docs/unity/integration/configure-embrace-ios.md index 7146f7d1..2167c0ee 100644 --- a/docs/unity/integration/configure-embrace-ios.md +++ b/docs/unity/integration/configure-embrace-ios.md @@ -14,6 +14,13 @@ Go to Tools -> Embrace -> Getting Started and click on it to reveal the Embrace +Additionally, when you start the SDK you will need to pass the `App ID` to the StartSDK call as below: + +```cs +EmbraceStartupArgs args = new EmbraceStartupArgs("AppID"); +Embrace.Instance.StartSDK(args); +``` + Now when you build and run your project, our editor script will use those values to correctly setup the final IPA to work with Embrace. --- From 21036327434aec19ec93fa89b66ad663d5c3ecb6 Mon Sep 17 00:00:00 2001 From: alyssa-embrace Date: Mon, 30 Sep 2024 22:46:00 -0700 Subject: [PATCH 5/5] Changelog update --- docs/unity/changelog.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/unity/changelog.md b/docs/unity/changelog.md index 03f810b9..15bdd88b 100644 --- a/docs/unity/changelog.md +++ b/docs/unity/changelog.md @@ -5,6 +5,19 @@ sidebar_position: 4 --- # Unity SDK Changelog +## 2.0.0 +*September 30th, 2024* +:::info Important +This version of the Unity SDK contains several breaking changes to our API, including the removal of deprecated functions. + +Additionally, with the update to Embrace Android 6.13, the SDK now requires Gradle 7.5.1, AGP 7.4.2, and API 34 or higher. +::: + +* Updated Embrace Android SDK to 6.13 +* Updated Embrace iOS SDK to 6.4 +* Removed deprecated functions in API +* Changed StartSDK call to support new EmbraceStartupArgs type + ## 1.26.1 *August 12th, 2024* * NPE patch for null EmbraceSpanEvents