I am creating a real time audio calling app using phoneRTC in ionic3.
I have added the cordova plugin using following command
ionic cordova plugin add cordova-plugin-phonertc --save
Which adds following lines to my package.json
"cordova": {
"plugins": {
"com.dooble.phonertc": {}
}
}
and following to config.xml
<plugin name="com.dooble.phonertc" spec="~2.0.1" />
Now, i don't know how to use or import this in my home.ts file.