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

Commit eeadecb

Browse files
author
Jeff Brateman
committed
Release 5.3.3
1 parent 28f3bdf commit eeadecb

File tree

9 files changed

+21
-15
lines changed

9 files changed

+21
-15
lines changed

CHANGELOG.md

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

4+
5.3.3
5+
-----
6+
* Fix newline issue in ES locale [#142](https://github.com/card-io/card.io-Android-SDK/issues/142).
7+
* Fix build issue with ndk 11 [card.io-Android-source#60](https://github.com/card-io/card.io-Android-source/issues/60).
8+
* Upgrade gradle to 2.12.
9+
* Upgrade Android Gradle plugin to 2.0.0.
10+
411
5.3.2
512
-----
613
* Fix issue where Android 23 and above devices would crash when the library's `.so` files were removed [PayPal-Android-SDK#279](https://github.com/paypal/PayPal-Android-SDK/issues/279).
File renamed without changes.

README.md

Lines changed: 3 additions & 3 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.2'
17+
compile 'io.card:android-sdk:5.3.3'
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.2'
49+
compile 'io.card:android-sdk:5.3.3'
5050
```
5151

5252
##### If you use something other than gradle, then:
@@ -159,4 +159,4 @@ Please read our [contributing guidelines](CONTRIBUTING.md) prior to submitting a
159159
License
160160
-------
161161

162-
Please refer to this repo's [license file](LICENSE.txt).
162+
Please refer to this repo's [license file](LICENSE).

SampleApp/build.gradle

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ buildscript {
33
mavenCentral()
44
}
55
dependencies {
6-
classpath 'com.android.tools.build:gradle:1.5.0'
6+
classpath 'com.android.tools.build:gradle:2.0.0'
77
}
88
}
99

@@ -52,7 +52,10 @@ dependencies {
5252
if (parent != null) {
5353
compile project(':card.io')
5454
} else {
55-
compile 'io.card:android-sdk:5.3.2'
55+
compile 'io.card:android-sdk:5.3.3'
5656
}
5757
}
5858

59+
task wrapper(type: Wrapper) {
60+
gradleVersion = '2.12'
61+
}
2.56 KB
Binary file not shown.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Wed Nov 26 10:39:47 CST 2014
1+
#Thu Apr 14 11:42:35 CDT 2016
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-bin.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-2.12-bin.zip

SampleApp/gradlew

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

SampleApp/gradlew.bat

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)