rn-linkrunner 2.6.0 → 2.6.2
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.
- package/android/build.gradle +1 -1
- package/ios/LinkrunnerSDK.swift +2 -2
- package/package.json +1 -1
package/android/build.gradle
CHANGED
|
@@ -116,7 +116,7 @@ dependencies {
|
|
|
116
116
|
implementation 'com.facebook.react:react-android:0.80.0'
|
|
117
117
|
|
|
118
118
|
// Linkrunner SDK
|
|
119
|
-
implementation "io.linkrunner:android-sdk:3.
|
|
119
|
+
implementation "io.linkrunner:android-sdk:3.5.2"
|
|
120
120
|
|
|
121
121
|
// Kotlin standard libraries - use stable versions
|
|
122
122
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
|
package/ios/LinkrunnerSDK.swift
CHANGED
|
@@ -53,7 +53,7 @@ class LinkrunnerSDK: NSObject {
|
|
|
53
53
|
amplitudeDeviceId: userData["amplitude_device_id"] as? String,
|
|
54
54
|
posthogDistinctId: userData["posthog_distinct_id"] as? String,
|
|
55
55
|
brazeDeviceId: userData["braze_device_id"] as? String,
|
|
56
|
-
gaAppInstanceId: userData["ga_app_instance_id"] as? String
|
|
56
|
+
gaAppInstanceId: userData["ga_app_instance_id"] as? String
|
|
57
57
|
)
|
|
58
58
|
|
|
59
59
|
Task {
|
|
@@ -90,7 +90,7 @@ class LinkrunnerSDK: NSObject {
|
|
|
90
90
|
amplitudeDeviceId: userData["amplitude_device_id"] as? String,
|
|
91
91
|
posthogDistinctId: userData["posthog_distinct_id"] as? String,
|
|
92
92
|
brazeDeviceId: userData["braze_device_id"] as? String,
|
|
93
|
-
gaAppInstanceId: userData["ga_app_instance_id"] as? String
|
|
93
|
+
gaAppInstanceId: userData["ga_app_instance_id"] as? String
|
|
94
94
|
)
|
|
95
95
|
|
|
96
96
|
Task {
|