Skip to content

Commit 899b34f

Browse files
committed
Use v 3.0.5
1 parent 7876776 commit 899b34f

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

CHANGELOG.md

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

4-
Version 3.0.4 *(2016-10-19)*
4+
Version 3.0.4 *(2016-10-30)*
55
----------------------------
66

7-
* Bug fixes
7+
* Bug fixes
8+
9+
Version 3.0.4 *(2016-10-20)*
10+
----------------------------
811

12+
* Bug fixes
913

1014
Version 3.0.0 *(2016-10-16)*
1115
----------------------------

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@ Using Instabug is as easy as "Get ready, Get set, Go".
2222

2323
Grab your desired flavour via Gradle:
2424
```groovy
25-
compile 'com.instabug.library:instabug:3.0.4'
25+
compile 'com.instabug.library:instabug:3.0.5'
2626
```
2727
28+
```
2829
or via Maven: (if you're that kind of person :bowtie:)
29-
3030
```xml
3131
<dependency>
3232
<groupId>com.instabug.library</groupId>
3333
<artifactId>instabug</artifactId>
34-
<version>3.0.4</version>
34+
<version>3.0.5</version>
3535
</dependency>
3636
```
3737
@@ -40,13 +40,13 @@ Using Instabug is as easy as "Get ready, Get set, Go".
4040
* Initializing Instabug:
4141
4242
In your `Application` class add the following:
43-
```java
43+
```
4444
@Override
4545
public void onCreate() {
4646
super.onCreate();
4747
// ...
4848
new Instabug.Builder(this, "<YOUR_APP_TOKEN>")
49-
.setInvocationEvent(InstabugInvocationEvent.FLOATING_BUTTON)
49+
.setInvocationEvent(InstabugInvocationEvent.InstabugInvocationEventFloatingButton)
5050
.build();
5151
// ...
5252
}

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ dependencies {
5252
// TODO add the following 2 lines if you exclude io.reactivex from Instabug
5353
// compile 'io.reactivex:rxjava:1.0.13'
5454
// compile 'io.reactivex:rxandroid:1.0.1'
55-
compile('com.instabug.library:instabug:3.0.4') {
55+
compile('com.instabug.library:instabug:3.0.5') {
5656
// TODO uncomment this line to exclude RxJava from Instabug and use your own version
5757
// exclude group: 'io.reactivex'
5858

0 commit comments

Comments
 (0)