Skip to content

Commit d788635

Browse files
committed
Updating SDK to 8.6.0
1 parent 4a5efe9 commit d788635

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
Change Log
22
==========
33

4-
Version 8.4.0 *(2019-07-01)*
4+
Version 8.6.0 *(2019-08-05)*
5+
----------------------------
6+
* We're updating the SDK flow when they pick "Ask a question" to match with "Report a bug" and "Suggest an improvement". As part of the change, some APIs have been deprecated. While they are still functional, we recommend that you start using the new APIs, as the deprecated ones will be completely removed in a future release.
7+
* Various bug fixes and stability improvements.
8+
9+
10+
Version 8.5.0 *(2019-07-01)*
511
----------------------------
612
* With SDK V8.5, we’re introducing major improvements to the Repro Steps feature to make it more readable and usable for both technical and non-technical customers:
713
1. Improving the algorithm we follow to capture text from the app’s UI to help your users understand which part of the app their user was interacting with.

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ dependencies {
5555
//TODO add the following 2 lines if you exclude io.reactivex from Instabug
5656
//implementation 'io.reactivex:rxjava:1.0.13'
5757
//implementation 'io.reactivex:rxandroid:1.0.1'
58-
implementation('com.instabug.library:instabug:8.5.0') {
58+
implementation('com.instabug.library:instabug:8.6.0') {
5959
// TODO uncomment this line to exclude RxJava from Instabug and use your own version
6060
// exclude group: 'io.reactivex'
6161

app/src/main/java/com/example/instabug/ui/activities/MainActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public void onShowBetaOnboardingMessageClicked(View view) {
6565
}
6666

6767
public void onShowInstabugClicked(View view) {
68-
BugReporting.invoke();
68+
BugReporting.show(BugReporting.ReportType.BUG);
6969
}
7070

7171
public void onCrashTheAppClicked(View view) {

0 commit comments

Comments
 (0)