WebView Interaction tracking

The Medallia Experience Orchestration SDK for Android will automatically track Web View URLs. The mechanism for this feature depends on the phone's API level. If you are targeting phones below API 26, and using a custom Web View client, you must inform the SDK by setting usingCustomWebViewClient to true in the MXOAutomaticInteractionTrackingConfig.

import com.medallia.mxo.automatic.MXOAutomaticInteractionTrackingConfiguration.Companion.copy
import com.medallia.mxo.mxoAutomaticInteractionTrackingConfiguration
        
mxoAutomaticInteractionTrackingConfiguration = mxoAutomaticInteractionTrackingConfiguration.copy { 
	usingCustomWebViewClient = true
}
final MXOAutomaticInteractionTrackingConfiguration configuration = new MXOAutomaticInteractionTrackingConfiguration.Builder(MedalliaMXO.getAutomaticInteractionTrackingConfiguration())
	.usingCustomWebViewClient(true)
	.build();
MedalliaMXO.setAutomaticInteractionTrackingConfiguration(configuration);