Changelog

v7.0.0

Breaking changes

Change all your import from

import IdentitySdkGoogle

to

import Reach5Google

New features

v6.0.0

Warning: There are Breaking Changes

Breaking changes

Dependencies

v5.7.1

v5.7.0

Warning: There are Breaking Changes

Breaking changes

Other changes

v5.5.1

v5.2.2

v5.2.0

Breaking changes

v5.1.0

Breaking changes

v5.0.0

Breaking changes

We use Future instead callbacks, you need to transform yours callbacks into the Future

AppDelegate.reachfive()
  .loginWithPassword(username: email, password: password)
  .onSuccess { authToken in
    // Handle success
  }
  .onFailure { error in
    // Handle error
  }

instead of

AppDelegate.reachfive()
  .loginWithPassword(
    username: email,
    password: password,
    callback: { response in
        switch response {
          case .success(let authToken):
            // Handle success
          case .failure(let error):
            // handle error
          }
    }
)

v4.0.0

9th July 2019

Changes

New modular version of the Identity SDK iOS: