v2.2.2
- Internal performance improvements
- Deprecate the
https://maven.tanker.io
URL for the maven repository. Usehttps://storage.googleapis.com/maven.tanker.io
URL instead:
allprojects {
repositories {
// ...
maven {
url 'https://storage.googleapis.com/maven.tanker.io'
}
}
}
Note that previous releases are also accessible on the new URL.
- Simplify revocation handling in Tanker apps. Before version 2.2.2, you had to set the
connectDeviceRevokedHandler
to handle the revocation in this callback. Starting with this release, this is no longer necessary. Instead, calling any encryption method on Tanker while the device is revoked will throw a newDEVICE_REVOKED
exception, trigger theconnectDeviceRevokedHandler
callback, and close the session.