Skip to content

Commit

Permalink
Event queue
Browse files Browse the repository at this point in the history
Add support to handle events. Full support of `Targeted Sampling`.
  • Loading branch information
diegoserranoa committed Apr 28, 2020
1 parent 094ee4b commit 285813f
Show file tree
Hide file tree
Showing 29 changed files with 998 additions and 394 deletions.
6 changes: 6 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,9 @@ jobs:
destination: reports
- store_test_results:
path: app/build/test-results

workflows:
version: 2
build:
jobs:
- build
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.15.0 (2020-04-28)

- Add support for event based sampling

## 2.14.2 (2020-02-28)

- Fix bug when thank_you_link_url_settings is not present
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ If you use Maven, you can include this library as a dependency:
<dependency>
<groupId>com.wootric</groupId>
<artifactId>wootric-sdk-android</artifactId>
<version>2.14.2</version>
<version>2.15.0</version>
</dependency>
```

### Using Gradle

```xml
compile 'com.wootric:wootric-sdk-android:2.14.2'
compile 'com.wootric:wootric-sdk-android:2.15.0'
```

## Initializing Wootric
Expand Down
5 changes: 4 additions & 1 deletion androidsdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,10 @@ dependencies {
testImplementation 'org.robolectric:robolectric:4.1'
testImplementation 'org.json:json:20190722'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'androidx.fragment:fragment:1.2.2'
implementation 'androidx.fragment:fragment:1.2.4'
implementation 'androidx.lifecycle:lifecycle-runtime:2.2.0'
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
annotationProcessor 'androidx.lifecycle:lifecycle-compiler:2.2.0'
}

apply from: 'maven_push.gradle'
4 changes: 2 additions & 2 deletions androidsdk/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
VERSION_NAME=2.14.2
VERSION_CODE=2142
VERSION_NAME=2.15.0
VERSION_CODE=2150
GROUP=com.wootric

POM_DESCRIPTION=WootricSDK Android
Expand Down

0 comments on commit 285813f

Please sign in to comment.