Skip to content

Commit

Permalink
Updated the change log and readme files to reflect new changes
Browse files Browse the repository at this point in the history
  • Loading branch information
isso committed Apr 20, 2016
1 parent 41a5715 commit a2e575f
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v2.1.1(160420) (April 20, 2016)
- Fixed a bug where BLE connection attempts get stuck in progress indefinitely sometimes.

## v2.1.0(160404) (April 4, 2016)
- Made sure that the verification byte in the received frames is correct.
- Added the ability to update the board's firmware.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ to use the JCenter repository, add the following line to the dependencies sectio
```groovy
dependencies {
...
compile 'com.integreight.onesheeld:sdk:2.1.0'
compile 'com.integreight.onesheeld:sdk:2.1.1'
...
}
```

You can replace 2.1.0 with the version you wish to use. (Review the [releases page](https://github.com/Integreight/1Sheeld-Android-SDK/releases) to know the version numbers of the old releases.)
You can replace 2.1.1 with the version you wish to use. (Review the [releases page](https://github.com/Integreight/1Sheeld-Android-SDK/releases) to know the version numbers of the old releases.)

Then initialize the SDK in the onCreate() method of your application class or main activity.

Expand Down Expand Up @@ -149,7 +149,7 @@ Contributions are welcomed, please follow this pattern:
Don't forget to drop us an email, post on our forum, or mention us on Twitter or Facebook about what you have did with the SDK, we would love to hear about it.

## Learn More ##
- [JavaDoc documentation](http://1sheeld.com/AndroidSDK/JavaDocs/2.1.0/).
- [JavaDoc documentation](http://1sheeld.com/AndroidSDK/JavaDocs/2.1.1/).
- Play with [Our Sample SDK App](https://github.com/Integreight/1Sheeld-Android-SDK/tree/master/sampleApplication)
- Download [1Sheeld App](https://play.google.com/store/apps/details?id=com.integreight.onesheeld) from Play Store.
- Check our [1Sheeld Forums](http://www.1sheeld.com/forum) where you can post your questions and get answers.
Expand Down
6 changes: 3 additions & 3 deletions sampleApplication/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
applicationId "com.integreight.onesheeld.sampleapplication"
minSdkVersion 9
targetSdkVersion 22
versionCode 160404
versionName "2.1.0"
versionCode 160420
versionName "2.1.1"
}
buildTypes {
release {
Expand All @@ -22,6 +22,6 @@ android {
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.integreight.onesheeld:sdk:2.1.0'
compile 'com.integreight.onesheeld:sdk:2.1.1'
// compile project(':sdk')
}
6 changes: 3 additions & 3 deletions sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ext {
siteUrl = 'https://github.com/Integreight/1Sheeld-Android-SDK'
gitUrl = 'https://github.com/Integreight/1Sheeld-Android-SDK.git'

libraryVersion = '2.1.0'
libraryVersion = '2.1.1'

developerId = 'integreight'
developerName = 'Integreight, Inc.'
Expand All @@ -31,8 +31,8 @@ android {
defaultConfig {
minSdkVersion 9
targetSdkVersion 22
versionCode 160404
versionName "2.1.0"
versionCode 160420
versionName "2.1.1"
}
buildTypes {
release {
Expand Down

0 comments on commit a2e575f

Please sign in to comment.