Skip to content
This repository was archived by the owner on Jan 12, 2019. It is now read-only.

Commit 3130e78

Browse files
author
Jeff Brateman
committed
Release 5.4.0
1 parent 4463c73 commit 3130e78

File tree

9 files changed

+132
-122
lines changed

9 files changed

+132
-122
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
card.io Android SDK change log and release notes
22
================================================
33

4+
5.4.0
5+
-----
6+
* Add ability to blur all digits in the scanned card image, minus any number of digits to remain unblurred, enabled via `CardIOActivity.EXTRA_UNBLUR_DIGITS`. (Thank you Michael Schmoock!)
7+
* Fix issue where Maestro cards were not correctly recognized [#154](https://github.com/card-io/card.io-Android-SDK/issues/154).
8+
* Fix issue on Android 23 and above where `CardIOActivity#canReadCardWithCamera()` would return the incorrect value if permissions had not been granted [#136](https://github.com/card-io/card.io-Android-SDK/issues/136). Now defaults to `true` in such cases.
9+
* Add missing locales to javadocs [card.io-Android-source#75](https://github.com/card-io/card.io-Android-source/issues/75).
10+
* Upgrade gradle to 2.13.
11+
* Upgrade Android Gradle plugin to 2.1.0.
12+
413
5.3.4
514
-----
615
* Fix crash on Android 23 and above where `onRequestPermissionsResult()` returns an empty array [card.io-Android-source#70](https://github.com/card-io/card.io-Android-source/issues/70).

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ All releases follow [semantic versioning](http://semver.org/).
1414
The latest version is available via `mavenCentral()`. Just add the following dependency:
1515

1616
```
17-
compile 'io.card:android-sdk:5.3.4'
17+
compile 'io.card:android-sdk:5.4.0'
1818
```
1919

2020
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
4646
##### If you use gradle, then add the following dependency from `mavenCentral()`:
4747

4848
```
49-
compile 'io.card:android-sdk:5.3.4'
49+
compile 'io.card:android-sdk:5.4.0'
5050
```
5151

5252
##### If you use something other than gradle, then:

SampleApp/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
buildscript {
22
repositories {
3-
mavenCentral()
3+
jcenter()
44
}
55
dependencies {
66
classpath 'com.android.tools.build:gradle:2.1.0'
77
}
88
}
99

1010
repositories {
11-
mavenCentral()
11+
jcenter()
1212
}
1313

1414
apply plugin: 'com.android.application'
1515

1616
android {
1717
compileSdkVersion 23
18-
buildToolsVersion '23.0.1'
18+
buildToolsVersion "23.0.1"
1919

2020
signingConfigs {
2121
myConfig {
@@ -52,10 +52,10 @@ dependencies {
5252
if (parent != null) {
5353
compile project(':card.io')
5454
} else {
55-
compile 'io.card:android-sdk:5.3.4'
55+
compile 'io.card:android-sdk:5.4.0'
5656
}
5757
}
5858

5959
task wrapper(type: Wrapper) {
6060
gradleVersion = '2.13'
61-
}
61+
}

SampleApp/gradle.properties

Lines changed: 0 additions & 3 deletions
This file was deleted.
-83 Bytes
Binary file not shown.

SampleApp/gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#Tue May 31 10:21:02 CDT 2016
1+
#Tue Jun 14 11:26:39 CDT 2016
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME

SampleApp/gradlew

Lines changed: 25 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

SampleApp/gradlew.bat

Lines changed: 90 additions & 90 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)