Get started
Prerequisite
Before starting DriveKit Vehicle UI integration, make sure that you have initialized Vehicle and Common UI components, especially if you have disabled the SDK auto-initialization.
Integration
To add Vehicle UI module to your app, add the following line to your dependencies in your application build.gradle file:
Replace $drivekitui_version
with the DriveKit version you are using in your app
On a Github repository, you can find a demo app and the source code of Vehicle UI that you can use as an example.
Initialization
If you have disabled the SDK auto-initialization, the Vehicle UI module must also be manually initialized.
Then, to initialize the module in your app, you must call the initialization method in onCreate
method of your Application class:
Display vehicle list
To display the vehicle list to the driver, just call the following method:
Display vehicle detail
To display the vehicle detail, just call the following method:
Display vehicle picker
To display vehicle selection screens, just call the following method:
VehiclePickerCompleteListener
: This callback is called when VehiclePickerActivity has finishedvehicleToDelete
: If you want to replace your vehicle, you can use this parameter, it will delete and create a new one.
Last updated