Can't get video working for new android SDK of quickBlox -
Can't get video working for new android SDK of quickBlox - i've been trying videochat work android 2.0 sdk of quickblox past 2 days. can accept, make, reject videocalls video not send or receive on surfaceview. i can see own photographic camera video , switch photographic camera fine. i've gone on demo multiple times , pretty much copied line line. can give me tips on how working? super thankful. here qbchatlistener declaration onqbvideochatlistener qbvideochatlistener = new onqbvideochatlistener() { @override public void oncameradatareceive(byte[] videodata) { qbvideochatcontroller.getinstance().sendvideo(videodata); log.d("send", "video"); } @override public void onmicrophonedatareceive(byte[] audiodata) { if (!muteon) { qbvideochatcontroller.getinstance().sendaudio(audiodata); log.d("send", "audio"); } } @override publi...