I'm using pjsua2 with Android build. I can put a call on hold using: CallOpParam prm = new CallOpParam(true); try { currentCall.setHold(prm); } catch (Exception e) { e.printStackTrace(); } To unhold call I tried this, but does not work: CallOpParam prm = new CallOpParam(true); try { currentCall.reinvite(prm); } catch (Exception e) { e.printStackTrace(); } How should I call the reinvite method? Aduilio