diff --git a/CHANGELOG.md b/CHANGELOG.md index 9bece6da1..b157eab32 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## v8.5.2 (2019-08-04) + +* Fixes an issue that would cause Android to throw ArrayIndexOutOfBoundsException. + ## v8.5.1 (2019-07-22) * Fixes an issue that would cause Instabug.framework to appear twice when using CocoaPods. diff --git a/android/build.gradle b/android/build.gradle index 35e3a3306..8e80c1973 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -27,7 +27,7 @@ android { dependencies { implementation 'com.facebook.react:react-native:+' - api('com.instabug.library:instabug:8.5.0.1') { + api('com.instabug.library:instabug:8.5.0.11') { exclude group: 'com.android.support:appcompat-v7' } testImplementation 'org.mockito:mockito-core:1.10.19' diff --git a/package.json b/package.json index c3616daeb..7f410432d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "instabug-reactnative", - "version": "8.5.1", + "version": "8.5.2", "description": "React Native plugin for integrating the Instabug SDK", "main": "index.js", "types": "index.d.ts",