Reputation: 1566
Is there any way to push these PWA apps to apple store. So my query is whether we have tools for converting the Progressive Web Apps as .ipa files so that we can put them to apple store.
I googled a bit and is right now confused because some say it is possible, some say not possible in Apple store.
Any help on this will be very grateful. Thanks
Upvotes: 1
Views: 3121
Reputation: 83
We used pwabuilder.com to generate swift projects for our applications.
After some tweaking (mostly oauth flow, cookies and external resource handling), we were able to publish multiple 100% web-based apps to the App Store.
As it is still a regular swift app, there is an ability to add any swift-based components to/instead of any routes (for example, we added native animated loader screens, which are shown while waiting for the SSR to load), as well as to handle notifications.
P.S. we use bubblewrap
for TWA android build. It requires very little configuration, so we do not care much about reusing non-web codebase across the platforms.
Upvotes: 3
Reputation: 66
Unlike Android, TWA support is not available in Apple platforms yet. So for publishing PWA to apple app store, I presume we have to use WKWebView. I could find these two approaches:
Useful links: https://firt.dev/ios-14/#web-views-and-pwas-in-the-appstore
https://www.simicart.com/blog/pwa-app-stores/
https://webkit.org/blog/10882/app-bound-domains/
Upvotes: 5