Skip to content

Commit

Permalink
Release 4.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jsflax committed Jan 31, 2020
1 parent 8ed7bd6 commit 5a7109e
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
32 changes: 16 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ The official [MongoDB Stitch](https://stitch.mongodb.com/) SDK for Android/Java.
- [Example Usage](#example-usage)

## Documentation
* [API/Javadoc Documentation](https://docs.mongodb.com/stitch-sdks/java/4.6.0/index.html)
* [API/Javadoc Documentation](https://docs.mongodb.com/stitch-sdks/java/4.7.0/index.html)
* [MongoDB Stitch Documentation](https://docs.mongodb.com/stitch/)

## Discussion
Expand All @@ -27,7 +27,7 @@ The SDK artifacts are hosted by JCenter/Bintray at https://bintray.com/mongodb/M
Add the following to the build.gradle for your app module:

```gradle
implementation 'org.mongodb:stitch-android-sdk:4.6.0'
implementation 'org.mongodb:stitch-android-sdk:4.7.0'
```

Also add the following to your android block in your app module:
Expand All @@ -44,12 +44,12 @@ This will start you off with the core SDK functionality as well as the remote Mo
For customized dependencies use the following:

```gradle
implementation 'org.mongodb:stitch-android-core:4.6.0'
implementation 'org.mongodb:stitch-android-services-aws:4.6.0'
implementation 'org.mongodb:stitch-android-services-fcm:4.6.0'
implementation 'org.mongodb:stitch-android-services-http:4.6.0'
implementation 'org.mongodb:stitch-android-services-mongodb-remote:4.6.0'
implementation 'org.mongodb:stitch-android-services-twilio:4.6.0'
implementation 'org.mongodb:stitch-android-core:4.7.0'
implementation 'org.mongodb:stitch-android-services-aws:4.7.0'
implementation 'org.mongodb:stitch-android-services-fcm:4.7.0'
implementation 'org.mongodb:stitch-android-services-http:4.7.0'
implementation 'org.mongodb:stitch-android-services-mongodb-remote:4.7.0'
implementation 'org.mongodb:stitch-android-services-twilio:4.7.0'
```

#### R8 / ProGuard
Expand All @@ -63,20 +63,20 @@ If you experience any ProGuard related warnings or error when using the Stitch S
Add the following to the build.gradle for your module:

```gradle
implementation 'org.mongodb:stitch-server-sdk:4.6.0'
implementation 'org.mongodb:stitch-server-sdk:4.7.0'
```

This will start you off with the core SDK functionality as well as the remote MongoDB service.

For customized dependencies use the following:

```gradle
implementation 'org.mongodb:stitch-server-core:4.6.0'
implementation 'org.mongodb:stitch-server-services-aws:4.6.0'
implementation 'org.mongodb:stitch-server-services-fcm:4.6.0'
implementation 'org.mongodb:stitch-server-services-http:4.6.0'
implementation 'org.mongodb:stitch-server-services-mongodb-remote:4.6.0'
implementation 'org.mongodb:stitch-server-services-twilio:4.6.0'
implementation 'org.mongodb:stitch-server-core:4.7.0'
implementation 'org.mongodb:stitch-server-services-aws:4.7.0'
implementation 'org.mongodb:stitch-server-services-fcm:4.7.0'
implementation 'org.mongodb:stitch-server-services-http:4.7.0'
implementation 'org.mongodb:stitch-server-services-mongodb-remote:4.7.0'
implementation 'org.mongodb:stitch-server-services-twilio:4.7.0'
```

## Example Usage
Expand All @@ -98,7 +98,7 @@ implementation 'org.mongodb:stitch-server-services-twilio:4.6.0'
3. In your build.gradle for your app module, add the following to your dependencies block:

```gradle
implementation 'org.mongodb:stitch-android-sdk:4.6.0'
implementation 'org.mongodb:stitch-android-sdk:4.7.0'
```
4. In your build.gradle for your app module, add the following to your android block:

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ org.gradle.daemon=false
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
VERSION=4.6.0
VERSION=4.7.0

0 comments on commit 5a7109e

Please sign in to comment.