Skip to content

Commit f215aea

Browse files
committed
Use v3.0.6
1 parent d967d7d commit f215aea

File tree

4 files changed

+26
-11
lines changed

4 files changed

+26
-11
lines changed

CHANGELOG.md

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

4+
Version 3.0.6 *(2016-11-10)*
5+
----------------------------
6+
7+
* Add `setEnableSystemNotificationSound` & `setEnableInAppNotificationSound` for controlling notifications sound of the in-App chat
8+
* Bug fixes
9+
410
Version 3.0.5 *(2016-10-30)*
511
----------------------------
612

README.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,25 +20,25 @@ Using Instabug is as easy as "Get ready, Get set, Go".
2020

2121
1. <b>Adding Instabug to your dependencies</b> (Getting set)
2222

23-
Grab your desired flavour via Gradle:
23+
Grab via Gradle:
2424
```groovy
25-
compile 'com.instabug.library:instabug:3.0.5'
26-
```
27-
25+
compile 'com.instabug.library:instabug:3.0.6'
2826
```
27+
2928
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.5</version>
34+
<version>3.0.6</version>
3535
</dependency>
3636
```
37-
37+
3838
1. <b>Using Instabug</b> (Good to go!)
39-
39+
4040
* Initializing Instabug:
41-
41+
4242
In your `Application` class add the following:
4343
```
4444
@Override
@@ -51,7 +51,7 @@ Using Instabug is as easy as "Get ready, Get set, Go".
5151
// ...
5252
}
5353
```
54-
54+
5555
For technical documentation and FAQs check the [wiki][wiki]
5656
5757
License
@@ -75,3 +75,4 @@ License
7575
[1]: https://instabug.com/sdk-integration#android
7676
[2]: https://instabug.com/
7777
[wiki]: https://github.com/Instabug/android-sample/wiki
78+

app/build.gradle

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ android {
1717
minifyEnabled true
1818
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
1919
}
20+
debug {
21+
minifyEnabled true
22+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
23+
}
2024
}
2125

2226
productFlavors {
@@ -31,6 +35,10 @@ android {
3135
versionName "1.0-belowApi14"
3236
}
3337
}
38+
39+
dexOptions {
40+
javaMaxHeapSize "4g"
41+
}
3442
}
3543

3644
repositories {
@@ -52,7 +60,7 @@ dependencies {
5260
// TODO add the following 2 lines if you exclude io.reactivex from Instabug
5361
// compile 'io.reactivex:rxjava:1.0.13'
5462
// compile 'io.reactivex:rxandroid:1.0.1'
55-
compile('com.instabug.library:instabug:3.0.5') {
63+
compile('com.instabug.library:instabug:3.0.6') {
5664
// TODO uncomment this line to exclude RxJava from Instabug and use your own version
5765
// exclude group: 'io.reactivex'
5866

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
jcenter()
66
}
77
dependencies {
8-
classpath 'com.android.tools.build:gradle:2.2.1'
8+
classpath 'com.android.tools.build:gradle:2.2.2'
99
}
1010
}
1111

0 commit comments

Comments
 (0)