I'm planning to create a WebRTC based Ionic 2 application so was wondering if PhoneRTC is fully supported in Ionic 2.
Also, what are the alternatives available if it's not.
first phone rtc https://github.com/alongubkin/phonertc is a cordova plugin but it is nit supported under the hood of ionic native.
But you can still use third party plugins functionality through the plugins namespace on Window:
window.plugins.somePlugin.doSomething();
See this too(see it under the title Using a Plugin Not Included in Ionic Native
)