diff --git a/README.md b/README.md index 8c5a229..fe6b263 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ All releases follow [semantic versioning](http://semver.org/). The latest version is available via `mavenCentral()`. Just add the following dependency: ``` -compile 'io.card:android-sdk:5.1.1' +compile 'io.card:android-sdk:5.1.2' ``` You can receive updates about new versions via a few different channels: @@ -46,7 +46,7 @@ A manual entry fallback mode is provided for devices that do not meet these requ ##### If you use gradle, then add the following dependency from `mavenCentral()`: ``` -compile 'io.card:android-sdk:5.1.1' +compile 'io.card:android-sdk:5.1.2' ``` ##### If you use something other than gradle, then: diff --git a/SampleApp/build.gradle b/SampleApp/build.gradle index 6dd6f6d..2a676a8 100644 --- a/SampleApp/build.gradle +++ b/SampleApp/build.gradle @@ -52,7 +52,7 @@ dependencies { if (parent != null) { compile project(':card.io') } else { - compile 'io.card:android-sdk:5.1.1' + compile 'io.card:android-sdk:5.1.2' } } diff --git a/aars/card.io-5.1.1.aar b/aars/card.io-5.1.2.aar similarity index 98% rename from aars/card.io-5.1.1.aar rename to aars/card.io-5.1.2.aar index bfb3777..1c13acb 100644 Binary files a/aars/card.io-5.1.1.aar and b/aars/card.io-5.1.2.aar differ diff --git a/release_notes.md b/release_notes.md index 4f7f33a..8ca67b6 100644 --- a/release_notes.md +++ b/release_notes.md @@ -1,6 +1,10 @@ card.io Android SDK change log and release notes ================================================ +5.1.2 +----- +* Fix bug where denying the camera permission on Android 23 results in invalid data [#37-source](https://github.com/card-io/card.io-Android-source/issues/37). + 5.1.1 ----- * Fix bug where ActionBar was not properly hiding immediately after accepting the Camera permission.