react-native-gleapsdk 14.0.0 → 14.0.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/.gradle/6.8/fileChanges/last-build.bin +0 -0
- package/android/.gradle/6.8/fileHashes/fileHashes.lock +0 -0
- package/android/.gradle/6.8/gc.properties +0 -0
- package/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/android/.gradle/buildOutputCleanup/cache.properties +2 -0
- package/android/.gradle/checksums/checksums.lock +0 -0
- package/android/.gradle/checksums/md5-checksums.bin +0 -0
- package/android/.gradle/checksums/sha1-checksums.bin +0 -0
- package/android/.gradle/configuration-cache/gc.properties +0 -0
- package/android/.gradle/vcs-1/gc.properties +0 -0
- package/android/build.gradle +1 -1
- package/android/src/main/java/com/reactnativegleapsdk/GleapsdkModule.java +1 -7
- package/package.json +1 -1
- package/react-native-gleapsdk.podspec +1 -1
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
package/android/build.gradle
CHANGED
|
@@ -56,7 +56,7 @@ repositories {
|
|
|
56
56
|
|
|
57
57
|
dependencies {
|
|
58
58
|
implementation "com.facebook.react:react-native:+"
|
|
59
|
-
implementation group: 'io.gleap', name: 'gleap-android-sdk', version: '14.0.
|
|
59
|
+
implementation group: 'io.gleap', name: 'gleap-android-sdk', version: '14.0.1'
|
|
60
60
|
|
|
61
61
|
if(rootProject && rootProject.ext) {
|
|
62
62
|
if(rootProject.ext.targetSdkVersion == 30 || rootProject.ext.compileSdkVersion == 30) {
|
|
@@ -1077,17 +1077,11 @@ public class GleapsdkModule extends ReactContextBaseJavaModule {
|
|
|
1077
1077
|
return matcher.group(1).toLowerCase();
|
|
1078
1078
|
}
|
|
1079
1079
|
|
|
1080
|
-
@ReactMethod
|
|
1081
|
-
public void registerConfigLoadedAction(ConfigLoadedCallback configLoadedCallback) {
|
|
1082
|
-
Gleap.getInstance().setConfigLoadedCallback(configLoadedCallback);
|
|
1083
|
-
}
|
|
1084
|
-
|
|
1085
1080
|
@ReactMethod
|
|
1086
1081
|
public void disableConsoleLog() {
|
|
1087
1082
|
Gleap.getInstance().disableConsoleLog();
|
|
1088
1083
|
}
|
|
1089
|
-
|
|
1090
|
-
|
|
1084
|
+
|
|
1091
1085
|
@ReactMethod
|
|
1092
1086
|
public void log(String msg) {
|
|
1093
1087
|
Gleap.getInstance().log(msg);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-gleapsdk",
|
|
3
|
-
"version": "14.0.
|
|
3
|
+
"version": "14.0.2",
|
|
4
4
|
"description": "Know exactly why and how a bug happened. Get reports with screenshots, live action replays and all of the important metadata every time.",
|
|
5
5
|
"main": "lib/commonjs/index",
|
|
6
6
|
"module": "lib/module/index",
|