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

Commit

Permalink
Release 5.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lkorth committed Mar 17, 2017
1 parent 093d9ee commit fdd40a7
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 21 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
card.io Android SDK change log and release notes
================================================

5.5.1
-----
* Remove sample app signing (fixes [#125](https://github.com/card-io/card.io-Android-source/issues/125)).
* 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)).
* Remove unnecessary logging (fixes [#184](https://github.com/card-io/card.io-Android-SDK/issues/184)).
* Compile distributed package with NDK r14.

5.5.0
-----
* Update Gradle build plugin to 2.2.3.
Expand Down
2 changes: 1 addition & 1 deletion 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.5.0'
compile 'io.card:android-sdk:5.5.1'
```

You can receive updates about new versions via a few different channels:
Expand Down
20 changes: 3 additions & 17 deletions SampleApp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.3'
classpath 'com.android.tools.build:gradle:2.3.0'
}
}

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

android {
compileSdkVersion 25
buildToolsVersion "25.0.0"
buildToolsVersion "25.0.2"

defaultConfig {
applicationId "io.card.development"
Expand All @@ -29,20 +29,10 @@ android {
testInstrumentationRunner 'android.support.test.runner.AndroidJUnitRunner'
}

signingConfigs {
myConfig {
storeFile file("example.keystore")
storePassword "abc123"
keyAlias "example-alias"
keyPassword "abc123"
}
}

buildTypes {
release {
minifyEnabled true
proguardFile getDefaultProguardFile('proguard-android.txt')
signingConfig signingConfigs.myConfig
}
}

Expand All @@ -60,15 +50,11 @@ dependencies {
if (parent != null) {
compile project(':card.io')
} else {
compile 'io.card:android-sdk:5.5.0'
compile 'io.card:android-sdk:5.5.1'
}

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

androidTestCompile "com.android.support.test.espresso:espresso-core:2.2.2"
androidTestCompile "com.github.lkorth:device-automator:01d85912ec"
}

task wrapper(type: Wrapper) {
gradleVersion = '2.14.1'
}
4 changes: 2 additions & 2 deletions SampleApp/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Mon Aug 08 16:06:32 CDT 2016
#Tue Mar 14 15:49:42 EDT 2017
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,8 @@ public void onAutotest(View v) {
@Override
public void onStop() {
super.onStop();

mResultLabel.setText("");
Log.d(TAG, "onStop()");
}

@Override
Expand Down Expand Up @@ -206,6 +206,7 @@ public void run() {
mResultCardTypeImage.setImageBitmap(cardTypeImage);

Log.i(TAG, "Set result: " + outStr);

mResultLabel.setText(outStr);
}

Expand Down
Binary file renamed aars/card.io-5.5.0.aar → aars/card.io-5.5.1.aar
Binary file not shown.

0 comments on commit fdd40a7

Please sign in to comment.