Skip to content

v3.3.0

Compare
Choose a tag to compare
@mdheri mdheri released this 25 Jul 21:50
· 69 commits to master since this release
0ab21cf

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();