Skip to content

Commit 913afa2

Browse files
committed
Updating sdk version to 8.3.0
1 parent e985300 commit 913afa2

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Change Log
22
==========
33

4+
Version 8.3.0 *(2019-05-06)*
5+
----------------------------
6+
* Users now will be able to see the auto screen recordings before submitting a bug report.
7+
* View hierarchy is back again.
8+
* Auto screen recording will work with bug reporting only.
9+
* Surveys & Announcements Localization support: you can now create localized surveys and announcements with support for over 20 languages.
10+
* Various Bug Fixes.
11+
412
Version 8.2.2 *(2019-04-11)*
513
----------------------------
614
* Bug fix: Removing duplicate color resource to solve a build error.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ For more info, visit [Instabug.com](https://www.instabug.com).
1515
Add this line to your build.gradle file.
1616

1717
```groovy
18-
implementation 'com.instabug.library:instabug:8.2.2'
18+
implementation 'com.instabug.library:instabug:8.3.0'
1919
```
2020

2121
## Usage

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.2.2') {
58+
implementation('com.instabug.library:instabug:8.3.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/SampleApplication.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
import android.content.Context;
55
import android.support.multidex.MultiDex;
66

7+
import com.instabug.bug.BugReporting;
78
import com.instabug.library.Instabug;
89
import com.instabug.library.InstabugColorTheme;
910
import com.instabug.library.InstabugCustomTextPlaceHolder;
@@ -57,6 +58,6 @@ public void onCreate() {
5758
//setting user attributes
5859
Instabug.setUserAttribute("USER_TYPE", "instabug user");
5960

60-
Instabug.setAutoScreenRecordingEnabled(true);
61+
BugReporting.setAutoScreenRecordingEnabled(true);
6162
}
6263
}

0 commit comments

Comments
 (0)