< Previous by Date Date Index Next by Date >
  Thread Index Next in Thread >

[reSIProcate-users] How to compile the resip for Android in release mode


Hi, how could I compile the resip for android in release mode ?

Sometimes I got the assert error in DUM when my application is running, 

ServerInviteSession.cxx:
ServerInviteSession::accept(int code)

      case UAS_Accepted:
      case UAS_WaitingToOffer:
      case UAS_WaitingToRequestOffer:
         assert(0);  // Already Accepted  ======> this assert error was reported
         break;


I think it will no appears if I can compile the resip in nodebug mode(release mode).
I've tried add a line in Makefile.osarch:

VOCAL_COMPILE_TYPE := nodebug  //======> added this line

ifdef LIB_DYNAMIC
BUILD_SHARED_LIBS := yes
endif


But seems the assert still effect.

Thanks