Skip to content

Commit 1be7ddd

Browse files
authored
🤝 Merge pull request #11 from Instabug/hotfix/parse_stack
Hotfix/parse stack
2 parents 6f9cd7c + 915bcb0 commit 1be7ddd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ android {
2121

2222
dependencies {
2323
compile 'com.facebook.react:react-native:0.20.+'
24-
compile ('com.instabug.library:instabug:4.15.1'){
24+
compile ('com.instabug.library:instabug:4.15.2'){
2525
exclude group: 'com.android.support:appcompat-v7'
2626
}
2727
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "instabug-reactnative",
3-
"version": "2.13.0",
3+
"version": "2.13.1",
44
"description": "React Native plugin for integrating the Instabug SDK",
55
"main": "index.js",
66
"repository": {

utils/InstabugUtils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use strict';
22
import {NativeModules, Platform} from 'react-native';
33
let {Instabug} = NativeModules;
4-
// import parseErrorStackLib from '../../react-native/Libraries/Core/Devtools/parseErrorStack.js';
4+
import parseErrorStackLib from '../../react-native/Libraries/Core/Devtools/parseErrorStack.js';
55

66
let parseErrorStack = (error) => {
77
return parseErrorStackLib(error);

0 commit comments

Comments
 (0)