In regards to your first question, @kckern mentioned they’ll be updating the Quick Start guide to instruct how to add in things such as ringback and ringtones:
I unfortunately do not have any useful information in regards to your second query. Hopefully there is someone more familiar with Android development that can comment.
Hey @Alex_Preston
Thanks for the response. I am familiar with the above Intent method but in the sample app i am unable to find which function finally finish the Video/Voice call activity as most of the functions and layout designs are handled by abstract class “CallActivity”.
In sample app once the call gets disconnected i believe the activity finish itself but i want to open some other activity with call details like call duration, call id etc.
@Nemi Ahh okay, so as far as I see in the CallActivity class, when the state changes from STATE.STATE_ENDING, to STATE.STATE_END, the finishWithEnding(status) gets called which calls finish(), hence how it gets to the previous activity. So what you could do is instead of calling finish() you could simply start another activity and pass the callID as a stringExtra. From there you can get that call object in the next activity via SendBirdCall.getCall(callID). That would contain all of the things like call duration, calleeid, callerid, etc. Did I understand your ask correctly?
@Alex_Preston yes that’s what i was looking for. Thanks for the help. Really appreciate your quick response.
Thanks @Tyler for your reference as well.