react-native-gleapsdk 7.0.12 → 7.0.15

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.
@@ -53,7 +53,8 @@ repositories {
53
53
 
54
54
  dependencies {
55
55
  implementation "com.facebook.react:react-native:+"
56
- implementation group: 'io.gleap', name: 'gleap-android-sdk', version: '7.0.30'
56
+ implementation group: 'io.gleap', name: 'gleap-android-sdk', version: '7.0.34'
57
+
57
58
 
58
59
  if(rootProject && rootProject.ext) {
59
60
  if(rootProject.ext.targetSdkVersion == 30 || rootProject.ext.compileSdkVersion == 30) {
package/ios/Gleapsdk.m CHANGED
@@ -244,6 +244,13 @@ RCT_EXPORT_METHOD(open)
244
244
  });
245
245
  }
246
246
 
247
+ RCT_EXPORT_METHOD(close)
248
+ {
249
+ dispatch_async(dispatch_get_main_queue(), ^{
250
+ [Gleap close];
251
+ });
252
+ }
253
+
247
254
  RCT_EXPORT_METHOD(setLanguage:(NSString *)language)
248
255
  {
249
256
  dispatch_async(dispatch_get_main_queue(), ^{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-gleapsdk",
3
- "version": "7.0.12",
3
+ "version": "7.0.15",
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", "7.0.13"
19
+ s.dependency "Gleap", "7.0.15"
20
20
  end