1.21 -> 1.22

Breaking changes

  • WedgeProvider needs context and server type

    • When initializing the SDK with device configuration, 2 more fields need to be passed to WedgeProvider. The provider's constructor needs context and server type for TDWP feature.

      • server type is an enum (TDWDServerType) with 3 values for the server environments (DEV, UAT, and PROD)

DsDeviceManager.blockingInitialize(
                context as Application,
                listOf(
                    WedgeProvider(context, Regex("^IMS-.*"), TDWDServerType.DEV) 
                )
            )

Last updated