Hi Erel, yes, the admin mode is released and pressing the back button and then the phone icon reveals the incoming call.
I have added the following code to the service to try to bring the incoming call to the front but it brings the phonebook app to the front instead:
'Service module
'incoming call processing
Case "RINGING"
Log("CallerID="&StartingIntent.GetExtra("incoming_number"))
CallSubDelayed(Main,"btnUnlock_Click")
Sleep(3000)
Dim Intent1 As Intent
Intent1.Initialize(Intent1.ACTION_MAIN, "")
Intent1.SetComponent("com.android.providers.telephony")
StartActivity(Intent1)
I tried a couple of the installed packages that looked like they might handle calls but none brought up the incoming call. Is there a URI reference maybe or a different ACTION?
(Or something else lol??)
Cheers