Skip to content
This repository was archived by the owner on Feb 14, 2024. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ It uses no proprietary vendor API and is freely available on [Ledger Unplugged](

# Building

- Set the environment variable `JC_HOME` to the folder containg the [Java Card Development Kit 3.0.2](http://www.oracle.com/technetwork/java/embedded/javacard/downloads/index.html)
- Set the environment variable `JC_HOME` to the folder containg the [Java Card Development Kit 3.0.5](http://www.oracle.com/technetwork/java/embedded/javacard/downloads/index.html)
- Run `gradlew convertJavacard`

# Installing
Expand Down
9 changes: 2 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ dependencies {
// testCompile group: 'junit', name: 'junit', version: '4.12'
// testCompile 'org.testng:testng:6.1.1'

jcardsim 'com.licel:jcardsim:3.0.4'
jcardsim 'com.licel:jcardsim:3.0.5'
}

test {
Expand All @@ -44,15 +44,10 @@ test {
}

// JavaCard SDKs and libraries
final def JC212 = libsSdk + '/jc212_kit'
final def JC221 = libsSdk + '/jc221_kit'
final def JC222 = libsSdk + '/jc222_kit'
final def JC303 = libsSdk + '/jc303_kit'
final def JC304 = libsSdk + '/jc304_kit'
final def JC305 = libsSdk + '/jc305u1_kit'

// Which JavaCard SDK to use - select
final def JC_SELECTED = JC304
final def JC_SELECTED = JC305

javacard {

Expand Down