Migration Guide from v6.5.4 to v7.0.0
If you update to version 7.0.0 of the MobbID SDK for iOS, you will need to make the following changes to your code.
Breaking changes
The offline mode has been removed
To continue providing you with the best features in our product, we have removed the offline mode. You only need to make the following adjustments: remove the mode
parameter from the initSDK
method of the MIDSDK
class.
Before
MIDSDK.shared.doInitSDK(
applicationId = "your_application_id",
authToken = "your_auth_token",
mode = MIDSDK.MIDMode.OFFLINE,
serverUrl = "your_server_url"
)
After
MIDSDK.initSDK(
applicationId = "your_application_id",
authToken = "your_auth_token",
serverUrl = "your_server_url"
)