v3.3.0
What's Changed
AuthClient and SmartcarCompatibilityRequest
- The testMode(boolean) method is deprecated and replaced with the mode(String) method instead.
- mode(String) Determine what mode Smartcar Connect should be launched in.
- Should be one of test, live or simulated.
Example:
AuthClient client = new AuthClient.Builder().mode("simulated").build();
SmartcarCompatibilityRequest request = new SmartcarCompatibilityRequest.Builder().mode("simulated").build();
SmartcarVehicleOptions
- Added the method addFlag(String, String) and addFlag(String, boolean) to the class SmartcarVehicleOptions
- More information on flags can be found here
Example:
SmartcarVehicleOptions options = new SmartcarVehicleOptions.Builder()
.addFlag("country", "DE")
.addFlag("flag", true)
.build();