Android Studio – Initialize PeerConnectionFactory with latest webrtc dependency
I am using the below dependency of webrtc in my Android App implementation 'org.webrtc:google-webrtc:1.0.+' How to Initialize PeerConnectionFactory, I am doing it in below manner but it is giving compilation error. private void initializePeerConnectionFactory() { PeerConnectionFactory.initializeAndroidGlobals(this, true, true, true); factory…