Android icon opens browser with website

0

I'm creating a responsive page and would like to know if it's possible to create an app-installable app for android / ios that is just an icon that opens the browser with the address of my webpage.

    
asked by anonymous 02.06.2015 / 14:39

1 answer

1

If you want a Play store-installable app, you can create a native app (ex: Android Studio) that will contain only one screen (Activity). This screen will have a WebView element that will load your page. It can be cached on the device, so the application will also work offline if this is necessary / possible. You can also create a shortcut on the Android web browser that takes you to the page in your web browser.

    
02.06.2015 / 15:54