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.
File without changes
@@ -0,0 +1,2 @@
1
+ #Tue Sep 17 16:04:39 CEST 2024
2
+ gradle.version=6.8
File without changes
@@ -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.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.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",
@@ -16,5 +16,5 @@ Pod::Spec.new do |s|
16
16
  s.source_files = "ios/**/*.{h,m,mm}"
17
17
 
18
18
  s.dependency "React-Core"
19
- s.dependency "Gleap", "14.0.0"
19
+ s.dependency "Gleap", "14.0.1"
20
20
  end