This repository has been archived by the owner on Mar 17, 2023. It is now read-only.
Releases: maxieds/MifareClassicToolLibrary
Releases · maxieds/MifareClassicToolLibrary
Initial public release of the library (1.1.9)
Library information
It basically turns the functionality of the open source Android application Mifare Classic Tool into a library so that we can perform the same actions from within other custom applications.
Integration of the library into custom Android / Java code
(e.g., how to add this library to your application)
Details for how to integrate this library into your code are found in the library documentation posted here. There is also an open source demo application (see also Play Store installer) that shows how to use the library. It can also be integrated into your application using the app/build.gradle
configuration by adding the following lines:
allprojects {
repositories {
// ...
maven { url 'https://jitpack.io' }
}
}
dependencies {
implementation 'com.github.maxieds:MifareClassicToolLibrary:1.1.8'
}