Skip to content

Commit

Permalink
Update library to 5.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Brateman committed Jun 4, 2015
1 parent 86d9569 commit 55e87be
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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
}
Expand Down
2 changes: 1 addition & 1 deletion SampleApp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
}

Binary file removed aars/card.io-5.0.0.aar
Binary file not shown.
Binary file added aars/card.io-5.0.1.aar
Binary file not shown.
5 changes: 5 additions & 0 deletions release_notes.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down

0 comments on commit 55e87be

Please sign in to comment.