Disabling WKWebView tracking

By default, the SDK automatically sends an Interaction request for WKWebView Interaction path.
Note: When a local file is loaded into a WKWebView, the path for an Interaction is generated as a wildcard. For example, for a local WKWebView folder in the assets directory the Interaction path will be ios://touchpoint/*/webview/*, and if there is no such directory in local files, the path will be generated directly for an html file as follows: ios://touchpoint/*/htmlfilename.

To disable WKWebView tracking, add the following to your app's Info.plist file and set DisableWKWebViewTracking to YES (boolean value):

Disable WKWebView tracking.
<key>MedalliaMXO Config</key>
<dict>
  <key>Swizzling Options</key>
  <dict>
    <key>DisableWKWebViewTracking</key>
    <true/>
  </dict>
</dict>