I’ve got a web app we’ve been running in iOS 11.x that works great, and we’re attempting to get it into the app store by wrapping it in zeroqode’s Webview product. It’s a POS that uses Square to handle transactions, so at some point the user clicks “checkout” and fires this JS:
var url = “square-commerce-v1://payment/create?data=[DATA HERE]”;
window.location = url;
This works fine as an iOS home screen app, but fails when wrapped in Webview. What am I missing here?
Thanks in advance!