@coralogix/react-native-plugin 0.1.1 → 0.1.3

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/CHANGELOG.md CHANGED
@@ -1,3 +1,14 @@
1
+ ## 0.1.3 (2025-09-02)
2
+
3
+ ### Patch
4
+
5
+ Bump android native version to 2.4.6
6
+
7
+ ## 0.1.2 (2025-09-01)
8
+
9
+ ### Patch
10
+ Bump ios native version to 1.2.3
11
+
1
12
  ## 0.1.1 (2025-09-01)
2
13
 
3
14
  ### 🩹 Fixes
package/CxSdk.podspec CHANGED
@@ -16,8 +16,8 @@ Pod::Spec.new do |s|
16
16
 
17
17
  s.source_files = "ios/**/*.{h,m,mm,swift}"
18
18
 
19
- s.dependency 'Coralogix','1.2.2'
20
- s.dependency 'CoralogixInternal','1.2.2'
19
+ s.dependency 'Coralogix','1.2.3'
20
+ s.dependency 'CoralogixInternal','1.2.3'
21
21
 
22
22
 
23
23
  # Use install_modules_dependencies helper to install the dependencies if React Native version >=0.71.0.
package/README.md CHANGED
@@ -176,20 +176,6 @@ CoralogixRum.init({
176
176
  });
177
177
  ```
178
178
 
179
- ### Android integration
180
- Our Android native SDK uses java 8 features that requires desugaring to be enabled, on your native android project add this to your app module build.gradle:
181
- ```groovy
182
- android {
183
- compileOptions {
184
- coreLibraryDesugaringEnabled true
185
- }
186
- }
187
-
188
- dependencies {
189
- coreLibraryDesugaring "com.android.tools:desugar_jdk_libs:2.1.5"
190
- }
191
- ```
192
-
193
179
  ### Troubleshooting
194
180
 
195
181
  #### URL.origin is not implemented
@@ -50,7 +50,6 @@ android {
50
50
  }
51
51
 
52
52
  compileOptions {
53
- setCoreLibraryDesugaringEnabled(true)
54
53
  sourceCompatibility JavaVersion.VERSION_1_8
55
54
  targetCompatibility JavaVersion.VERSION_1_8
56
55
  }
@@ -76,8 +75,7 @@ dependencies {
76
75
  implementation "com.facebook.react:react-android"
77
76
  implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
78
77
 
79
- implementation "com.coralogix:android-sdk:2.4.52"
80
- coreLibraryDesugaring "com.android.tools:desugar_jdk_libs:2.1.5"
78
+ implementation "com.coralogix:android-sdk:2.4.6"
81
79
  }
82
80
 
83
81
  react {
package/index.cjs.js CHANGED
@@ -219,7 +219,7 @@ function stopJsRefreshRateSampler() {
219
219
  appStateSub = null;
220
220
  }
221
221
 
222
- var version = "0.1.1";
222
+ var version = "0.1.3";
223
223
  var pkg = {
224
224
  version: version};
225
225
 
package/index.esm.js CHANGED
@@ -217,7 +217,7 @@ function stopJsRefreshRateSampler() {
217
217
  appStateSub = null;
218
218
  }
219
219
 
220
- var version = "0.1.1";
220
+ var version = "0.1.3";
221
221
  var pkg = {
222
222
  version: version};
223
223
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coralogix/react-native-plugin",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "Official Coralogix React Native plugin",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Coralogix",