Migrate from v1.1.3 to v1.2.0

Medallia Experience Orchestration SDK for iOS v1.2.0 deprecates API parameters that were previously required for the SDK configuration. It is meant to simplify configuration process and improve Interaction performance of the SDK.
Important: Those values will be removed in the next major version of the SDK.
  1. Navigate to your AppDelegate class.
  2. Remove deprecated API parameters.

    Remove the apiKey, sharedSecret, and userId values from the MedalliaMXO.configuration method in didFinishLaunchingWithOptions:

    builder.apiKey = "f713d44a-8af0-4e79-ba7e-xxxxxxxxxxxxxxxxx"
    builder.sharedSecret = "bb8bacb2-ffc2-4c52-aaf4-xxxxxxxxxxx"
    builder.userId = "api@yourCompanyName"
    builder.apiKey = @"f713d44a-8af0-4e79-ba7e-xxxxxxxxxxxxxxxx";
    builder.sharedSecret = @"bb8bacb2-ffc2-4c52-aaf4-xxxxxxxxxx";
    builder.userId = @"api@yourCompanyName";
    Tip: We recommend removing those values from your MedalliaMXO.configuration method, however, it is not required until the next major release.
You have now successfully removed the deprecated API parameters from your app.