From d298763acb36462b4d076270a5df9b41f650032b Mon Sep 17 00:00:00 2001 From: ndesai Date: Tue, 10 Dec 2024 10:31:15 -0600 Subject: [PATCH] chore:update native android and ios agent --- CHANGELOG.md | 8 ++++++++ com.newrelic.agent/Editor/TestUnityDependencies.xml | 4 ++-- com.newrelic.agent/Scripts/Native/NewRelicAndroid.cs | 2 +- com.newrelic.agent/Scripts/Native/NewRelicIos.cs | 2 +- package.json | 2 +- 5 files changed, 13 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 05f6388..fd329ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## 1.4.3 + + +## Improvements + +- Native Android agent updated to version 7.6.2 +- Native iOS agent updated to version 7.5.3 + ## 1.4.2 diff --git a/com.newrelic.agent/Editor/TestUnityDependencies.xml b/com.newrelic.agent/Editor/TestUnityDependencies.xml index 934b72e..2eaf104 100644 --- a/com.newrelic.agent/Editor/TestUnityDependencies.xml +++ b/com.newrelic.agent/Editor/TestUnityDependencies.xml @@ -1,11 +1,11 @@ - + - + https://github.com/CocoaPods/Specs diff --git a/com.newrelic.agent/Scripts/Native/NewRelicAndroid.cs b/com.newrelic.agent/Scripts/Native/NewRelicAndroid.cs index d0d525d..9292d05 100644 --- a/com.newrelic.agent/Scripts/Native/NewRelicAndroid.cs +++ b/com.newrelic.agent/Scripts/Native/NewRelicAndroid.cs @@ -138,7 +138,7 @@ private void withBuilderMethods(AndroidJavaObject agentInstance) using (AndroidJavaObject platform = new AndroidJavaClass("com.newrelic.agent.android.ApplicationFramework").GetStatic("Unity")) { - agentInstance.Call("withApplicationFramework", platform, "1.4.2"); + agentInstance.Call("withApplicationFramework", platform, "1.4.3"); } diff --git a/com.newrelic.agent/Scripts/Native/NewRelicIos.cs b/com.newrelic.agent/Scripts/Native/NewRelicIos.cs index b12b3d7..aef9fe1 100644 --- a/com.newrelic.agent/Scripts/Native/NewRelicIos.cs +++ b/com.newrelic.agent/Scripts/Native/NewRelicIos.cs @@ -296,7 +296,7 @@ public void logLevel(int logLevel) override public void start(string applicationToken) { - NR_setPlatform("1.4.2"); + NR_setPlatform("1.4.3"); NewRelic_startWithApplicationToken(applicationToken); } diff --git a/package.json b/package.json index 6a80910..5f0f815 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "com.newrelic.agent", - "version": "1.4.2", + "version": "1.4.3", "displayName": "NewRelic SDK", "description": "NewRelic's Unity SDK lets you bring the deep, introspective and native debugging power of NewRelic into your Unity game or application.", "unity": "2019.1",