Skip to content
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
1 change: 1 addition & 0 deletions NATIVE_SDK_VERSIONS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
| MAUI SDK | iOS SDK | Android SDK |
|----------|---------|-------------|
| 0.2.0 | 3.11.0 | 3.10.0 |
Comment thread
sbarrio marked this conversation as resolved.
| 0.1.0 | 3.11.0 | 3.10.0 |
2 changes: 1 addition & 1 deletion SPEC.md
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ datadogwrapper-release.aar (ZIP archive)
**Datadog.Android.Core.csproj**:
```xml
<ItemGroup>
<PackageReference Include="Datadog.Android.Internal" Version="0.1.0" />
<PackageReference Include="Datadog.Android.Internal" Version="0.2.0" />
<AndroidMavenLibrary Include="com.datadoghq:dd-sdk-android-core" Version="<ANDROID_NATIVE_VERSION>" />
</ItemGroup>
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<AndroidClassParser>class-parse</AndroidClassParser>
<!-- Suppress XA4241/XA4242: Java transitive deps are satisfied via NuGet; verification not needed -->
<NoWarn>$(NoWarn);XA4241;XA4242</NoWarn>
<Version>0.1.0</Version>
<Version>0.2.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down Expand Up @@ -43,10 +43,10 @@

<ItemGroup>
<!-- Reference dd-sdk-android binding packages -->
<PackageReference Include="Datadog.Android.Logs" Version="0.1.0" />
<PackageReference Include="Datadog.Android.Trace" Version="0.1.0" />
<PackageReference Include="Datadog.Android.Rum" Version="0.1.0" />
<PackageReference Include="Datadog.Android.SessionReplay" Version="0.1.0" />
<PackageReference Include="Datadog.Android.Logs" Version="0.2.0" />
<PackageReference Include="Datadog.Android.Trace" Version="0.2.0" />
<PackageReference Include="Datadog.Android.Rum" Version="0.2.0" />
<PackageReference Include="Datadog.Android.SessionReplay" Version="0.2.0" />

<!-- Required for Kotlin-based libraries -->
<PackageReference Include="Xamarin.Kotlin.StdLib" Version="2.2.0.1" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<AndroidClassParser>class-parse</AndroidClassParser>
<!-- Suppress XA4241/XA4242: Java transitive deps are satisfied via NuGet; verification not needed -->
<NoWarn>$(NoWarn);XA4241;XA4242</NoWarn>
<Version>0.1.0</Version>
<Version>0.2.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<AndroidClassParser>class-parse</AndroidClassParser>
<!-- Suppress XA4241/XA4242: Java transitive deps are satisfied via NuGet; verification not needed -->
<NoWarn>$(NoWarn);XA4241;XA4242</NoWarn>
<Version>0.1.0</Version>
<Version>0.2.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<AndroidClassParser>class-parse</AndroidClassParser>
<!-- Suppress XA4241/XA4242: Java transitive deps are satisfied via NuGet; verification not needed -->
<NoWarn>$(NoWarn);XA4241;XA4242</NoWarn>
<Version>0.1.0</Version>
<Version>0.2.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion bindings/Datadog.Android.Rum/Datadog.Android.Rum.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<AndroidClassParser>class-parse</AndroidClassParser>
<!-- Suppress XA4241/XA4242: Java transitive deps are satisfied via NuGet; verification not needed -->
<NoWarn>$(NoWarn);XA4241;XA4242</NoWarn>
<Version>0.1.0</Version>
<Version>0.2.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<AndroidClassParser>class-parse</AndroidClassParser>
<!-- Suppress XA4241/XA4242: Java transitive deps are satisfied via NuGet; verification not needed -->
<NoWarn>$(NoWarn);XA4241;XA4242</NoWarn>
<Version>0.1.0</Version>
<Version>0.2.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<AndroidClassParser>class-parse</AndroidClassParser>
<!-- Suppress XA4241/XA4242: Java transitive deps are satisfied via NuGet; verification not needed -->
<NoWarn>$(NoWarn);XA4241;XA4242</NoWarn>
<Version>0.1.0</Version>
<Version>0.2.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
6 changes: 3 additions & 3 deletions bindings/Datadog.Maui/Datadog.Maui.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<!-- Package metadata -->
<PackageId>Datadog.Maui</PackageId>
<Version>0.1.0</Version>
<Version>0.2.0</Version>
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
<Authors>Datadog</Authors>
<Company>Datadog</Company>
Expand Down Expand Up @@ -40,12 +40,12 @@

<!-- iOS platform dependencies -->
<ItemGroup Condition="$(TargetFramework.Contains('-ios'))">
<PackageReference Include="Datadog.iOS.Binding" Version="0.1.0" />
<PackageReference Include="Datadog.iOS.Binding" Version="0.2.0" />
</ItemGroup>

<!-- Android platform dependencies -->
<ItemGroup Condition="$(TargetFramework.Contains('-android'))">
<PackageReference Include="Datadog.Android.Binding" Version="0.1.0" />
<PackageReference Include="Datadog.Android.Binding" Version="0.2.0" />
<!-- Runtime dependencies for Android -->
<PackageReference Include="Xamarin.Kotlin.StdLib" Version="2.2.0.1" />
<PackageReference Include="Xamarin.Kotlin.Reflect" Version="2.2.0.1" />
Expand Down
2 changes: 1 addition & 1 deletion bindings/Datadog.iOS.Binding/Datadog.iOS.Binding.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<ImplicitUsings>enable</ImplicitUsings>
<IsBindingProject>true</IsBindingProject>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Version>0.1.0</Version>
<Version>0.2.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion example/example.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@

<!-- Datadog SDK for .NET MAUI (unified package for iOS and Android) -->
<ItemGroup>
<PackageReference Include="Datadog.Maui" Version="0.1.0" />
<PackageReference Include="Datadog.Maui" Version="0.2.0" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion versions.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Datadog MAUI SDK — version references
# Sourced by build, release, and version-management scripts.

SDK_VERSION=0.1.0
SDK_VERSION=0.2.0
IOS_NATIVE_VERSION=3.11.0
ANDROID_NATIVE_VERSION=3.10.0