react-native-gleapsdk 7.0.13 → 7.0.14
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/build.gradle +1 -1
- package/ios/Gleapsdk.m +7 -0
- package/package.json +1 -1
- package/react-native-gleapsdk.podspec +1 -1
package/android/build.gradle
CHANGED
|
@@ -53,7 +53,7 @@ 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.
|
|
56
|
+
implementation group: 'io.gleap', name: 'gleap-android-sdk', version: '7.0.32'
|
|
57
57
|
|
|
58
58
|
if(rootProject && rootProject.ext) {
|
|
59
59
|
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.
|
|
3
|
+
"version": "7.0.14",
|
|
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",
|