diff --git a/README.md b/README.md index d67eabe..9507cbe 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.0.0' +compile 'io.card:android-sdk:5.0.1' ``` 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.0.0' +compile 'io.card:android-sdk:5.0.1' ``` ##### If you use something other than gradle, then: @@ -144,7 +144,7 @@ protected void onActivityResult(int requestCode, int resultCode, Intent data) { resultDisplayStr = "Scan was canceled."; } // do something with resultDisplayStr, maybe display it in a textView - // resultTextView.setText(resultDisplayStr); + // resultTextView.setText(resultStr); } // else handle other activity results } diff --git a/SampleApp/build.gradle b/SampleApp/build.gradle index bd35175..788386f 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.0.0' + compile 'io.card:android-sdk:5.0.1' } } diff --git a/aars/card.io-5.0.0.aar b/aars/card.io-5.0.0.aar deleted file mode 100644 index c16ffb2..0000000 Binary files a/aars/card.io-5.0.0.aar and /dev/null differ diff --git a/aars/card.io-5.0.1.aar b/aars/card.io-5.0.1.aar new file mode 100644 index 0000000..8a49e69 Binary files /dev/null and b/aars/card.io-5.0.1.aar differ diff --git a/release_notes.md b/release_notes.md index d3b7eb9..0995f92 100644 --- a/release_notes.md +++ b/release_notes.md @@ -1,6 +1,11 @@ card.io Android SDK change log and release notes ================================================ +5.0.1 +----- +* Prevent screenshots when the app is backgrounded via [FLAG_SECURE](http://developer.android.com/reference/android/view/WindowManager.LayoutParams.html#FLAG_SECURE). +* Fix issue where arm64-v8a devices were not allowing the scanning of devices [#62](https://github.com/card-io/card.io-Android-SDK/issues/62)). + 5.0.0 ----- * Add automatic expiry-scanning.