If your platform is not supported, you can still listen to events emitted by the widget. To do so, you need to inject a JavaScript interface into the WebView and listen to messages emitted by the widget.

const postMessage = (message) => {
  // Send message to the host app.
};
window.ScrimmageChannel = {
  postMessage,
};

Check out the Widget Events API for more information.