Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Open URL without leaving application

I'm developing an application for various platforms, including Android using Unity3D 5.

Currently to open a URL, I'm using the following C# code:

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

I would like to open links without leaving the application. I really like the Facebook app implementation, where the URL gets opened in a popup-style InApp web browser and can be closed easily without affecting the user's browser.

like image 533
PeterInvincible Avatar asked Apr 25 '26 14:04

PeterInvincible


1 Answers

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

like image 79
Swinny89 Avatar answered Apr 28 '26 05:04

Swinny89