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

Commit fdd40a7

Browse files
committed
Release 5.5.1
1 parent 093d9ee commit fdd40a7

File tree

6 files changed

+15
-21
lines changed

6 files changed

+15
-21
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.5.1
5+
-----
6+
* Remove sample app signing (fixes [#125](https://github.com/card-io/card.io-Android-source/issues/125)).
7+
* Fix manual entry Activity started twice when rejecting camera permission (fixes [#128](https://github.com/card-io/card.io-Android-source/pull/128), [#150](https://github.com/card-io/card.io-Android-SDK/issues/150)).
8+
* Remove unnecessary logging (fixes [#184](https://github.com/card-io/card.io-Android-SDK/issues/184)).
9+
* Compile distributed package with NDK r14.
10+
411
5.5.0
512
-----
613
* Update Gradle build plugin to 2.2.3.

README.md

Lines changed: 1 addition & 1 deletion
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.5.0'
17+
compile 'io.card:android-sdk:5.5.1'
1818
```
1919

2020
You can receive updates about new versions via a few different channels:

SampleApp/build.gradle

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

@@ -18,7 +18,7 @@ apply plugin: 'com.android.application'
1818

1919
android {
2020
compileSdkVersion 25
21-
buildToolsVersion "25.0.0"
21+
buildToolsVersion "25.0.2"
2222

2323
defaultConfig {
2424
applicationId "io.card.development"
@@ -29,20 +29,10 @@ android {
2929
testInstrumentationRunner 'android.support.test.runner.AndroidJUnitRunner'
3030
}
3131

32-
signingConfigs {
33-
myConfig {
34-
storeFile file("example.keystore")
35-
storePassword "abc123"
36-
keyAlias "example-alias"
37-
keyPassword "abc123"
38-
}
39-
}
40-
4132
buildTypes {
4233
release {
4334
minifyEnabled true
4435
proguardFile getDefaultProguardFile('proguard-android.txt')
45-
signingConfig signingConfigs.myConfig
4636
}
4737
}
4838

@@ -60,15 +50,11 @@ dependencies {
6050
if (parent != null) {
6151
compile project(':card.io')
6252
} else {
63-
compile 'io.card:android-sdk:5.5.0'
53+
compile 'io.card:android-sdk:5.5.1'
6454
}
6555

6656
debugCompile 'com.squareup.leakcanary:leakcanary-android:1.4'
6757

6858
androidTestCompile "com.android.support.test.espresso:espresso-core:2.2.2"
6959
androidTestCompile "com.github.lkorth:device-automator:01d85912ec"
7060
}
71-
72-
task wrapper(type: Wrapper) {
73-
gradleVersion = '2.14.1'
74-
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Mon Aug 08 16:06:32 CDT 2016
1+
#Tue Mar 14 15:49:42 EDT 2017
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.14.1-bin.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip

SampleApp/src/main/java/io/card/development/SampleActivity.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,8 +148,8 @@ public void onAutotest(View v) {
148148
@Override
149149
public void onStop() {
150150
super.onStop();
151+
151152
mResultLabel.setText("");
152-
Log.d(TAG, "onStop()");
153153
}
154154

155155
@Override
@@ -206,6 +206,7 @@ public void run() {
206206
mResultCardTypeImage.setImageBitmap(cardTypeImage);
207207

208208
Log.i(TAG, "Set result: " + outStr);
209+
209210
mResultLabel.setText(outStr);
210211
}
211212

Binary file not shown.

0 commit comments

Comments
 (0)