Skip to content

v2.2.2

Compare
Choose a tag to compare
@jeremad jeremad released this 24 Jan 11:08
· 506 commits to master since this release
  • Internal performance improvements
  • Deprecate the https://maven.tanker.io URL for the maven repository. Use https://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 new DEVICE_REVOKED exception, trigger the connectDeviceRevokedHandler callback, and close the session.