Open URL without leaving the app

I am developing an application for various platforms including Android using Unity3D 5.

I am currently using the following code to open the url C#

:

Application.openURL("http://example.com");

      

I would like to open links without leaving the application. I really like Facebook's implementation of the app where the URL opens in an InApp popup browser and can be easily closed without affecting the user's browser.

+3


source to share


1 answer


If you got to https://prime31.com/plugins and get the Android Etcetera plugin then they have a very simple implementation of opening a WebView in your app that you don't have to leave the app.



+2


source







All Articles