Is it possible to add my Mobile app as an iframe on my website?

Viewed 1068

I created a Mobile app using (https://www.greencopper.com/solutions). It has a cross-platform which I can edith the contains online and would like to add it to my Website (Like facebook iframe "scrollable").

1 Answers

If your app is a Progressive Web App, yes: just use your app's URL as src attribute of the iframe and you should achieve your desired result.

If your app is a native app (i.e. you have a file which should be loaded in the phone, probably through the stores), no you can't.

Related