@datadog/mobile-react-native-session-replay 2.1.1-alpha.0 → 2.2.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -19,7 +19,7 @@ Pod::Spec.new do |s|
|
|
|
19
19
|
s.dependency "React-Core"
|
|
20
20
|
|
|
21
21
|
# /!\ Remember to keep the version in sync with DatadogSDKReactNative.podspec
|
|
22
|
-
s.dependency 'DatadogSessionReplay', '~> 2.
|
|
22
|
+
s.dependency 'DatadogSessionReplay', '~> 2.7.1'
|
|
23
23
|
s.dependency 'DatadogSDKReactNative'
|
|
24
24
|
|
|
25
25
|
s.test_spec 'Tests' do |test_spec|
|
package/android/build.gradle
CHANGED
|
@@ -188,7 +188,7 @@ dependencies {
|
|
|
188
188
|
api "com.facebook.react:react-android:$reactNativeVersion"
|
|
189
189
|
}
|
|
190
190
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
191
|
-
implementation "com.datadoghq:dd-sdk-android-session-replay:2.
|
|
191
|
+
implementation "com.datadoghq:dd-sdk-android-session-replay:2.6.2"
|
|
192
192
|
implementation project(path: ':datadog_mobile-react-native')
|
|
193
193
|
|
|
194
194
|
testImplementation "org.junit.platform:junit-platform-launcher:1.6.2"
|
|
@@ -49,7 +49,7 @@ public class DdSessionReplayImplementation: NSObject {
|
|
|
49
49
|
in: core
|
|
50
50
|
)
|
|
51
51
|
} else {
|
|
52
|
-
consolePrint("Core instance was not found when initializing Session Replay.")
|
|
52
|
+
consolePrint("Core instance was not found when initializing Session Replay.", .critical)
|
|
53
53
|
}
|
|
54
54
|
|
|
55
55
|
resolve(nil)
|
package/package.json
CHANGED