react-native-clarity 4.1.3 → 4.1.5

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.
@@ -72,7 +72,7 @@ def kotlin_version = getExtOrDefault("kotlinVersion")
72
72
  dependencies {
73
73
  implementation "com.facebook.react:react-native:+"
74
74
  implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
75
- implementation "com.microsoft.clarity:clarity:3.1.2"
75
+ implementation "com.microsoft.clarity:clarity:3.1.3"
76
76
  }
77
77
 
78
78
  if (isNewArchitectureEnabled()) {
@@ -100,7 +100,7 @@ class ClarityModule(reactContext: ReactApplicationContext) :
100
100
  val ret = mutableListOf<String>()
101
101
 
102
102
  for (i in 0 until arr.size()) {
103
- ret.add(arr.getString(i))
103
+ ret.add(arr.getString(i) ?: "")
104
104
  }
105
105
 
106
106
  return ret
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-clarity",
3
- "version": "4.1.3",
3
+ "version": "4.1.5",
4
4
  "description": "A plugin to provide the Clarity experience for the React Native applications.",
5
5
  "main": "lib/commonjs/index",
6
6
  "module": "lib/module/index",
@@ -163,4 +163,4 @@
163
163
  ]
164
164
  ]
165
165
  }
166
- }
166
+ }