@coralogix/react-native-plugin 0.1.2 → 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 +6 -0
- package/README.md +0 -14
- package/android/build.gradle +1 -3
- package/index.cjs.js +1 -1
- package/index.esm.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
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
|
package/android/build.gradle
CHANGED
|
@@ -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.
|
|
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
package/index.esm.js
CHANGED