Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

chore:update native android and ios agent #34

Merged
merged 1 commit into from
Dec 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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


Expand Down
4 changes: 2 additions & 2 deletions com.newrelic.agent/Editor/TestUnityDependencies.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<dependencies>
<androidPackages>
<androidPackage spec="com.newrelic.agent.android:agent-ndk:1.1.1"></androidPackage>
<androidPackage spec="com.newrelic.agent.android:android-agent:7.6.1">
<androidPackage spec="com.newrelic.agent.android:android-agent:7.6.2">
</androidPackage>
</androidPackages>
<iosPods>
<iosPod name="NewRelicAgent" version="~> 7.5.2" minTargetSdk="11.0">
<iosPod name="NewRelicAgent" version="~> 7.5.3" minTargetSdk="11.0">
<sources>
<source>https://github.com/CocoaPods/Specs</source>
</sources>
Expand Down
2 changes: 1 addition & 1 deletion com.newrelic.agent/Scripts/Native/NewRelicAndroid.cs
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ private void withBuilderMethods(AndroidJavaObject agentInstance)

using (AndroidJavaObject platform = new AndroidJavaClass("com.newrelic.agent.android.ApplicationFramework").GetStatic<AndroidJavaObject>("Unity"))
{
agentInstance.Call<AndroidJavaObject>("withApplicationFramework", platform, "1.4.2");
agentInstance.Call<AndroidJavaObject>("withApplicationFramework", platform, "1.4.3");
}


Expand Down
2 changes: 1 addition & 1 deletion com.newrelic.agent/Scripts/Native/NewRelicIos.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
Loading