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
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,6 @@ case "`uname`" in
4242
;;
4343
esac
4444

45-
# For Cygwin, ensure paths are in UNIX format before anything is touched.
46-
if $cygwin ; then
47-
[ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
48-
fi
49-
5045
# Attempt to set APP_HOME
5146
# Resolve links: $0 may be a link
5247
PRG="$0"
@@ -61,9 +56,9 @@ while [ -h "$PRG" ] ; do
6156
fi
6257
done
6358
SAVED="`pwd`"
64-
cd "`dirname \"$PRG\"`/" >&-
59+
cd "`dirname \"$PRG\"`/" >/dev/null
6560
APP_HOME="`pwd -P`"
66-
cd "$SAVED" >&-
61+
cd "$SAVED" >/dev/null
6762

6863
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
6964

@@ -114,6 +109,7 @@ fi
114109
if $cygwin ; then
115110
APP_HOME=`cygpath --path --mixed "$APP_HOME"`
116111
CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
112+
JAVACMD=`cygpath --unix "$JAVACMD"`
117113

118114
# We build the pattern for arguments to be converted via cygpath
119115
ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`

SampleApp/gradlew.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ echo location of your Java installation.
4646
goto fail
4747

4848
:init
49-
@rem Get command-line arguments, handling Windowz variants
49+
@rem Get command-line arguments, handling Windows variants
5050

5151
if not "%OS%" == "Windows_NT" goto win9xME_args
5252
if "%@eval[2+2]" == "4" goto 4NT_args
Binary file not shown.

0 commit comments

Comments
 (0)