I am trying to add PhoneRTC as a Cordova plugin to my project. I have followed the instructions on http://devcenter.appery.io/documentat... for android. PhoneRTC requires the WebRTC native android libraries (as jar and so packages), which are added to the /libs folder. However, when I try to build the apk package, the following build errors which indicate the native libraries are not properly loaded:
/appname/src/com/dooble/phonertc/VideoTrackRendererPair.java:[4,17] error: package org.webrtc does not exist
/appname/src/com/dooble/phonertc/VideoTrackRendererPair.java:[7,9] error: cannot find symbol
class VideoTrackRendererPair
/appname/src/com/dooble/phonertc/VideoTrackRendererPair.java:[8,9] error: cannot find symbol
/appname/src/com/dooble/phonertc/PhoneRTCPlugin.java:[20,17] error: package org.webrtc does not exist
...
Not sure how I can fix that. Any help would be appreciated so I can use the PhoneRTC plugin.