My android app makes outgoing call:
Intent dial = new Intent(Intent.ACTION_CALL, Uri.parse("tel:12345678900));
startActivity(dial);
After that user (caller) or callee can hang up. How can I detect who hung up caller or callee? I've seen the same question but there are not a positive answer, only negative and it was 4 years ago.
I can't believe that it's impossible. I tried to use BroadcastReceiver, PhoneStateListener, CallLog. It's helped to detect type of call: outgoing or incoming call, answered or unanswered call but it hasn't helped to detect who hung up caller or callee.