Reply To: Is WebRTC supported?

Welcome! Forums Unity Plugins In-App Web Browser Is WebRTC supported? Reply To: Is WebRTC supported?

#11697
Tim
Participant

Thanks, I have it working with Xcode / Swift… just still can’t get it working with your plugin…. any ideas?

I run the following on launch to get Mic permission….

IEnumerator Start()
{

findMicrophones();

yield return Application.RequestUserAuthorization(UserAuthorization.Microphone);
if (Application.HasUserAuthorization(UserAuthorization.Microphone))
{
Debug.Log(“Microphone found”);
}
else
{
Debug.Log(“Microphone not found”);
}
}

void findMicrophones()
{
foreach (var device in Microphone.devices)
{
Debug.Log(“Name: ” + device);
}
}

Then your test script

public string pageToOpen = “https://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();
}