Android client reference implementation of the TCN protocol
- Add the JitPack repository to your build file. Add it in your root build.gradle at the end of repositories:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
- Add the dependency
dependencies {
implementation 'com.github.TCNCoalition:tcn-client-android:Tag'
}
This library focuses on generating and observing CENs. It also defines a visitor interface with callbacks for the CENs. In order to process the callbacks further, you should:
- start the service, and
- listen to the CENs and store them according to your use case.