Skip to content

Commit 38417d9

Browse files
committed
Use version 2.4.0
1 parent c9f00e9 commit 38417d9

File tree

4 files changed

+17
-6
lines changed

4 files changed

+17
-6
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
Change Log
2+
==========
3+
4+
Version 2.4.0 *(2016-06-05)*
5+
----------------------------
6+
7+
* New: `Instabug.AddTags(Strings... )`, `Instabug.getTags()`, `Instabug.resetTags()` for adding custom tags for feedback and crash reports.
8+
* New: `onSdkInvokedCallback` & `onSdkDismissedCallback`
9+
* New: Czech localization
10+
* New: URLs are now clickable in in-app chat
11+
* Various bug fixes

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ Using Instabug is as easy as "Get ready, Get set, Go".
2828

2929
Grab your desired flavour via Gradle:
3030
```groovy
31-
compile 'com.instabug.library:instabug:2.3.3'
31+
compile 'com.instabug.library:instabug:2.4.0'
3232
```
3333
or
3434
```groovy
35-
compile 'com.instabug.library:instabugcompat:2.3.3'
35+
compile 'com.instabug.library:instabugcompat:2.4.0'
3636
```
3737
or
3838
```groovy
39-
compile 'com.instabug.library:instabugabs:2.3.3'
39+
compile 'com.instabug.library:instabugabs:2.4.0'
4040
```
4141
or via Maven: (if you're that kind of person :bowtie:)
4242
```xml

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ dependencies {
3535
compile 'com.android.support:design:23.2.0'
3636
compile 'com.android.support:appcompat-v7:23.2.0'
3737
// TODO if you use a lower version than 8.4.0 (min is 7.5.0) you should uncomment the exclude line to avoid errors
38-
compile 'com.google.android.gms:play-services:8.4.0'
38+
compile 'com.google.android.gms:play-services:9.0.0'
3939
// TODO add the following 2 lines if you exclude io.reactivex from Instabug
4040
// compile 'io.reactivex:rxjava:1.0.13'
4141
// compile 'io.reactivex:rxandroid:1.0.1'
42-
compile('com.instabug.library:instabug:2.3.3') {
42+
compile('com.instabug.library:instabug:2.4.0') {
4343
// TODO uncomment this line to exclude RxJava from Instabug and use your own version
4444
// exclude group: 'io.reactivex'
4545

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ protected void onCreate(Bundle savedInstanceState) {
2626
findViewById(R.id.attach_button).setOnClickListener(new View.OnClickListener() {
2727
@Override
2828
public void onClick(View v) {
29-
Instabug.setFileAttachment(Uri.parse("android.resource://com.example.instabug/" + R.raw.extra));
29+
Instabug.setFileAttachment(Uri.parse("android.resource://com.example.instabug/" + R.raw.extra), "file.file");
3030
Toast.makeText(GoogleMapsActivity.this, "File saved to be uploaded", Toast.LENGTH_SHORT).show();
3131
}
3232
});

0 commit comments

Comments
 (0)