Android Question stop dialing

mash4aa

Member
Licensed User
Longtime User
How to stop dialing after 3 seconds when I use
StartActivity(pc.Call("xxxxxxxxx"))

simulation does not work
keyg.keygenerator(KeyCodes.KEYCODE_ENDCALL)
 

DonManfred

Expert
Licensed User
Longtime User
When executing StartActivity you´ll leave your app and starting another app which does to call. Your app is sleeping.
You dont have control over the android.phone app and you cannot send any keycodes to it; reminder: your app is sleeping.
 
Upvote 0
Top