Skip to content

Commit

Permalink
release 1.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
ndesai-newrelic committed Dec 11, 2024
1 parent e4ddd9c commit 15cc139
Show file tree
Hide file tree
Showing 23 changed files with 541 additions and 385 deletions.
4 changes: 2 additions & 2 deletions NewRelic.MAUI.Plugin/NewRelic.MAUI.Plugin.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<SingleProject>true</SingleProject>
<ImplicitUsings>enable</ImplicitUsings>
<PackageId>NewRelic.MAUI.Plugin</PackageId>
<Version>1.1.5</Version>
<Version>1.1.6</Version>
<Summary>New Relic Plugin for .NET MAUI mobile apps</Summary>
<Description>With the New Relic .NET MAUI mobile plugin, your team can monitor the performance of .NET MAUI apps and identify code errors. The plugin collects crash data, network traffic, and other information for your apps using native components.</Description>
<Authors>New Relic</Authors>
Expand All @@ -35,6 +35,6 @@
<PackageReference Include="NewRelic.MAUI.Android.Binding" Version="7.6.2" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0-ios'">
<PackageReference Include="NewRelic.MAUI.iOS.Binding" Version="7.5.3" />
<PackageReference Include="NewRelic.MAUI.iOS.Binding" Version="7.5.3.1" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ public void Start(string applicationToken, AgentStartConfiguration agentConfig =


var newRelic = NRAndroidAgent.WithApplicationToken(applicationToken)
.WithApplicationFramework(Com.Newrelic.Agent.Android.ApplicationFramework.Maui, "1.1.5")
.WithApplicationFramework(Com.Newrelic.Agent.Android.ApplicationFramework.Maui, "1.1.6")
.WithLoggingEnabled(agentConfig.loggingEnabled)
.WithLogLevel(logLevelDict[agentConfig.logLevel]);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public void Start(string applicationToken, AgentStartConfiguration agentConfig =

NRIosAgent.EnableCrashReporting(agentConfig.crashReportingEnabled);
NRIosAgent.SetPlatform(MauiiOS.NewRelic.NRMAApplicationPlatform.Maui);
MauiiOS.NewRelic.NewRelic.SetPlatformVersion("1.1.5");
MauiiOS.NewRelic.NewRelic.SetPlatformVersion("1.1.6");


MauiiOS.NewRelic.NRLogger.SetLogLevels((uint)logLevelDict[agentConfig.logLevel]);
Expand Down
2 changes: 1 addition & 1 deletion NewRelic.MAUI.iOS.Binding/NewRelic.MAUI.iOS.Binding.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<ImplicitUsings>true</ImplicitUsings>
<PackageId>NewRelic.MAUI.iOS.Binding</PackageId>
<Authors>New Relic</Authors>
<Version>7.5.3</Version>
<Version>7.5.3.1</Version>
<IsBindingProject>true</IsBindingProject>
<summary>NewRelic iOS SDK binding for .NET MAUI</summary>
<description>A .NET iOS library that binds the native New Relic iOS SDK. With NewRelic, you can collect crashes, network traffic, and other information for .NET MAUI iOS apps using native components.</description>
Expand Down
18 changes: 11 additions & 7 deletions NewRelic.MAUI.iOS.Binding/NewRelic.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -5,33 +5,37 @@
<key>AvailableLibraries</key>
<array>
<dict>
<key>DebugSymbolsPath</key>
<string>dSYMs</string>
<key>BinaryPath</key>
<string>NewRelic.framework/NewRelic</string>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>NewRelic.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>BinaryPath</key>
<string>NewRelic.framework/NewRelic</string>
<key>DebugSymbolsPath</key>
<string>dSYMs</string>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>NewRelic.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Loading

0 comments on commit 15cc139

Please sign in to comment.