HomeiOS DevelopmentProblem opening exterior urls in PWABuilder iOS app

Problem opening exterior urls in PWABuilder iOS app


I’ve bought a progressive internet app wrapped in PWABuilder code for add into the Apple App Retailer. It had been a very long time since we had created a brand new model of this wrapper code or uploaded any new model to the App Retailer. We not too long ago created a brand new model of the wrapper code and uploaded it to the App Retailer, and we then seen that we abruptly couldn’t open an exterior url from throughout the app, and this exterior url is for apple maps (maps.apple.com).

After some googling, I discovered the answer for opening an exterior url was to regulate the code within the Data.plist file to incorporate a reference to the exterior url within the WKAppBoundDomains ingredient. That is what that space appears like in my Data.plist file now:

<key>WKAppBoundDomains</key>
<array>
    <string>mypwa.mydomain.com/index.html</string>
    <string>maps.apple.com</string>
</array>

I additionally added the next reference to "maps.apple.com" within the Settings.swift file:

// auth origins will open in modal and present toolbar for again into the principle origin.
// These also needs to seem in Data.plist
let authOrigins: [String] = ["maps.apple.com"]

Now I’ve discovered that I can efficiently open the url from the app, however there isn’t any longer a ‘again’ or ‘return’ button on the web page opened from that url. I am seeing this habits from the iPhone emulator on my mac.

I’ve tried making a recent copy of the PWABuilder code whereas together with "maps.apple.com" as an allowed area, however I am nonetheless seeing the identical downside from inside that model of the app. I did this from an AI suggestion from googling "pwabuilder ios swift exterior url want again button".

Problem opening exterior urls in PWABuilder iOS app

What do I have to do to get the ‘again’ button to return to the exterior url web page?

RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

- Advertisment -
Google search engine

Most Popular

Recent Comments