Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
marnberg committed Mar 10, 2022
1 parent b16b3a8 commit 32379ba
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
author: Tony Myles
title: "AferoJavaSDK"
date: 2022-Feb-28
status: 1.5.0
date: 2022-March-10
status: 1.5.1
---

# AferoJavaSDK
Expand Down Expand Up @@ -32,24 +32,24 @@ The SDK is composed of four separate modules.

The `afero-sdk-core` module is required for base functionality such as interacting with the Afero Cloud and manipulating devices.
```Gradle
implementation 'io.afero.sdk:afero-sdk-core:1.5.0'
implementation 'io.afero.sdk:afero-sdk-core:1.5.1'
```

The `afero-sdk-client-retrofit2` module provides an optional implementation of the AferoClient REST API interface using [Retrofit2](http://square.github.io/retrofit/) and [okhttp3](http://square.github.io/okhttp/). If you choose not to include this module in your project, you will need to develop your own implementation of AferoClient using your preferred http client library.

```Gradle
implementation 'io.afero.sdk:afero-sdk-client-retrofit2:1.5.0'
implementation 'io.afero.sdk:afero-sdk-client-retrofit2:1.5.1'
```

The `afero-sdk-android` module is required for Android development.
```Gradle
implementation 'io.afero.sdk:afero-sdk-android:1.5.0'
implementation 'io.afero.sdk:afero-sdk-android:1.5.1'
```

The `afero-sdk-softhub` module is required for soft hub functionality on Android.
```Gradle
implementation 'io.afero.sdk:afero-sdk-softhub:1.5.0'
implementation "io.afero.sdk:hubby:1.0.844@aar"
implementation 'io.afero.sdk:afero-sdk-softhub:1.5.1'
implementation "io.afero.sdk:hubby:1.0.957@aar"
```

## License
Expand Down
2 changes: 1 addition & 1 deletion samples/afero-lab/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
apply plugin: 'com.android.application'

final String sdkRepoKey = project.findProperty('aferoSDKConsumeRepoKey') ?: 'afero-java-sdk'
final String sdkVersion = project.findProperty('aferoSDKVersion') ?: '1.5.0'
final String sdkVersion = project.findProperty('aferoSDKVersion') ?: '1.5.1'

repositories {
maven {
Expand Down

0 comments on commit 32379ba

Please sign in to comment.