https://github.com/keycard-tech/status-keycard-java
Java SDK for the Status Keycard
https://github.com/keycard-tech/status-keycard-java
Last synced: over 1 year ago
JSON representation
Java SDK for the Status Keycard
- Host: GitHub
- URL: https://github.com/keycard-tech/status-keycard-java
- Owner: keycard-tech
- License: apache-2.0
- Created: 2018-10-23T11:35:07.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2023-06-06T14:45:57.000Z (about 3 years ago)
- Last Synced: 2025-04-01T16:04:59.535Z (over 1 year ago)
- Language: Java
- Homepage:
- Size: 416 KB
- Stars: 19
- Watchers: 68
- Forks: 15
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Keycard Java SDK for Android and Desktop
This SDK simplifies integration with the [Status Keycard](https://github.com/status-im/status-keycard) in Android
and Desktop applications. In this SDK you find both the classes needed for generic communication with SmartCards as well
as classes specifically addressing the Keycard.
To get started, check the file ```demo-android/src/main/java/im/status/keycard/app/MainActivity.java``` which a simple
demo application showing how the SDK works and what you can do with it.
## Usage
You can import the SDK in your Gradle or Maven project using [Jitpack.io](https://jitpack.io).
### On Android
```groovy
dependencies {
implementation 'com.github.status-im.status-keycard-java:android:3.0.2'
}
```
### on the desktop
```groovy
dependencies {
implementation 'com.github.status-im.status-keycard-java:desktop:3.0.2'
}
```