alienheretic

Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • in reply to: UIWebView deprecation #1669
    alienheretic
    Participant

    public class BrowserOpener : MonoBehaviour
    {

    public string pageToOpen = “http://www.google.com”;

    // check readme file to find out how to change title, colors etc.
    public void OnButtonClicked()
    {
    InAppBrowser.DisplayOptions options = new InAppBrowser.DisplayOptions();
    options.displayURLAsPageTitle = false;
    options.pageTitle = “InAppBrowser example”;

    InAppBrowser.OpenURL(pageToOpen, options);
    }

    public void OnClearCacheClicked()
    {
    InAppBrowser.ClearCache();
    }
    }

    in reply to: UIWebView deprecation #1663
    alienheretic
    Participant

    I also have this issue and client is pressing me for a fix can you please advise using unity 2019.2.4.f1

Viewing 2 posts - 1 through 2 (of 2 total)