i am using twilio android sdk for calling .. it is working fine.. but i am getting a very wierd issue right now
I was using the following code to fetch the call sid as soon as the onConnected method gets fired.. the call is working fine.. but this particular code through which i am getting the call sid has stopped working suddenly ! this was working fine earlier... please help somebody!!
@Override
public void onConnected(Connection eer) {
Log.e(TAG, "onConnected");
String sid = connection.getParameters()
.get(Connection.IncomingParameterCallSIDKey);
Log.e("call_sid", sid + "on connected");
}