Quick Start
Get the MOVE SDK running
Initializing the MOVE SDK
Create SDK instance
import io.dolphin.move.MoveSdk
...
var sdk: MoveSdk = MoveSdk.Builder()
.transportModes(ModeOfTransport.DRIVING)
.authentication(MoveAuth.Auth(productId,"contractId","accessToken","refreshToken"))
.init(context)Full code example
Last updated