Am working on a sencha touch project there i have a requirement to get last call duration. I have a button in my UI when some one tap on that button they can execute a call, after that event i need to get the call duration to that number. I have searched a lot to get any clue but did't find one yet. Please direct me in right direction
here is my code
{
xtype:'button',
text: 'Phone',
id:'callMeButton',
flex:1,
handler:function(){
window.open('tel:+'+9496347047);
// here i would like to get the last duration time for this number.
}
}