Skip to content

Commit

Permalink
Update Android sdk version to 2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanmos committed Dec 25, 2023
1 parent 7cc8400 commit 3fa9635
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions packages/core/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -171,10 +171,10 @@ dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
compileOnly "com.squareup.okhttp3:okhttp:3.12.13"

implementation "com.datadoghq:dd-sdk-android-rum:2.3.0"
implementation "com.datadoghq:dd-sdk-android-logs:2.3.0"
implementation "com.datadoghq:dd-sdk-android-trace:2.3.0"
implementation "com.datadoghq:dd-sdk-android-webview:2.3.0"
implementation "com.datadoghq:dd-sdk-android-rum:2.4.0"
implementation "com.datadoghq:dd-sdk-android-logs:2.4.0"
implementation "com.datadoghq:dd-sdk-android-trace:2.4.0"
implementation "com.datadoghq:dd-sdk-android-webview:2.4.0"
testImplementation "org.junit.platform:junit-platform-launcher:1.6.2"
testImplementation "org.junit.jupiter:junit-jupiter-api:5.6.2"
testImplementation "org.junit.jupiter:junit-jupiter-engine:5.6.2"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ internal class ActionEventForgeryFactory :
type = ActionEvent.ActionEventSessionType.USER,
hasReplay = forge.aNullable { aBool() }
),
source = forge.aNullable { aValueFrom(ActionEvent.Source::class.java) },
source = forge.aNullable { aValueFrom(ActionEvent.ActionEventSource::class.java) },
ciTest = forge.aNullable {
ActionEvent.CiTest(anHexadecimalString())
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ internal class ResourceEventForgeryFactory :
type = ResourceEvent.ResourceEventSessionType.USER,
hasReplay = forge.aNullable { aBool() }
),
source = forge.aNullable { aValueFrom(ResourceEvent.Source::class.java) },
source = forge.aNullable { aValueFrom(ResourceEvent.ResourceEventSource::class.java) },
ciTest = forge.aNullable {
ResourceEvent.CiTest(anHexadecimalString())
},
Expand Down
2 changes: 1 addition & 1 deletion packages/react-native-session-replay/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ dependencies {
api "com.facebook.react:react-android:$reactNativeVersion"
}
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation "com.datadoghq:dd-sdk-android-session-replay:2.3.0"
implementation "com.datadoghq:dd-sdk-android-session-replay:2.4.0"

testImplementation "org.junit.platform:junit-platform-launcher:1.6.2"
testImplementation "org.junit.jupiter:junit-jupiter-api:5.6.2"
Expand Down

0 comments on commit 3fa9635

Please sign in to comment.