Skip to content

Commit

Permalink
Bump gradle, add logging
Browse files Browse the repository at this point in the history
  • Loading branch information
skjolber committed Mar 11, 2020
1 parent 9f15d31 commit f96f6c9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:3.5.3'
classpath 'com.android.tools.build:gradle:3.6.0'
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
import android.widget.TextView;

import java.io.IOException;
import java.util.Arrays;


/**
Expand Down Expand Up @@ -106,6 +107,7 @@ public void onTagDiscovered(Tag tag) {
if(isoDep.getHiLayerResponse() != null) {
Log.d(TAG, "HiLayer bytes were '" + Utils.convertBinToASCII(isoDep.getHiLayerResponse()) + "'");
}
Log.d(TAG, "Technologies were " + Arrays.asList(tag.getTechList()) + ", id was " + Utils.convertBinToASCII(tag.getId()));
try {
try {
// https://stackoverflow.com/questions/44967567/ioexception-with-host-based-card-emulation
Expand All @@ -116,12 +118,6 @@ public void onTagDiscovered(Tag tag) {

Log.i(TAG, " -> " + Utils.convertBinToASCII(command));

Log.d(TAG, "Historical bytes were '" + Utils.convertBinToASCII(isoDep.getHistoricalBytes()) + "'");
if(isoDep.getHiLayerResponse() != null) {
Log.d(TAG, "HiLayer bytes were '" + Utils.convertBinToASCII(isoDep.getHiLayerResponse()) + "'");
}


// 6A 82: file not found

runOnUiThread(new Runnable() {
Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Thu Oct 03 23:25:54 CEST 2019
#Wed Mar 11 10:23:46 CET 2020
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-all.zip

0 comments on commit f96f6c9

Please sign in to comment.