github MicroblinkPlatform/microblink-platform-android v1.4.2

12 hours ago

Breaking changes

  • MicroblinkPlatformServiceSettings parameter update

    • The field hostUrl has been renamed to url.

    • Previously, hostUrl accepted only the base domain (e.g. https://www.myapi.com).

    • Now, url must include the full API transaction endpoint, for example: https://www.myapi.com/api/v1/transaction

Migration Guide

  • Before:
MicroblinkPlatformServiceSettings(
    workflowId = "myWorkflow",
    hostUrl = "https://www.myapi.com",
    consent = consent
)
  • Now:
MicroblinkPlatformServiceSettings(
    workflowId = "myWorkflow",
    url = "https://www.myapi.com/api/v1/transaction",
    consent = consent
)

⚠️ This is a breaking change. All integrations must update to use the new url parameter with the full endpoint.

Don't miss a new microblink-platform-android release

NewReleases is sending notifications on new releases.