Skip to content

Commit 5eeda7f

Browse files
author
John Hunt
committed
Roll version - new release with a few bug fixes
1 parent 602b66d commit 5eeda7f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ allprojects {
1515
In your module's build.gradle file, add the dependency:
1616
```groovy
1717
dependencies {
18-
compile 'com.github.busybusy.AnalyticsKit-Android:analyticskit:0.2.3'
18+
compile 'com.github.busybusy.AnalyticsKit-Android:analyticskit:0.3.0'
1919
...
2020
}
2121
```
@@ -24,7 +24,7 @@ You can include the implemented providers you want by adding them to the same de
2424
```groovy
2525
dependencies {
2626
...
27-
compile 'com.github.busybusy.AnalyticsKit-Android:answers-provider:0.2.3'
27+
compile 'com.github.busybusy.AnalyticsKit-Android:answers-provider:0.3.0'
2828
}
2929
```
3030

@@ -34,7 +34,7 @@ Then initialize AnalyticsKit-Android to work with those providers.
3434

3535
```java
3636
AnalyticsKit.getInstance()
37-
.registerProvider(new AnswersProvider());
37+
.registerProvider(new AnswersProvider(Answers.getInstance()));
3838
```
3939

4040
Send events where appropriate in your application code.

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ ext {
2525
minSdkVersion = 16
2626
targetSdkVersion = 23
2727
buildToolsVersion = "23.0.2"
28-
versionCode = 5
29-
versionName = "0.2.2"
28+
versionCode = 7
29+
versionName = "0.3.0"
3030

3131
/** Unit Testing Dependency Versions **/
3232
assertj_android_version = "1.0.0"

0 commit comments

Comments
 (0)