Hi, I’m new to App Inventor. I’m making a simple WebView app using the CustomWebView extension. My webpage has some links that open in a new tab or popup (using target="_blank" or window.open()), but in the app those links don’t open at all.
I’ve enabled Follow Links, and DeepLink. I’m trying to handle popups using OnNewWindowRequest, and I want:
Internal links (mydomain.com) to open inside the app
External links to open in the phone browser
How can I handle all new tab or popup links properly inside the app?
Thanks in advance!