Android Question PhoneCalls intent is asking for a password

DickD

Active Member
Licensed User
I'm trying to use the code below to initiate a phone call. I have added CALL_PHONE to the manifest editor. However when the phone app launches I get a voice message to "Enter your password." There is no password on this phone. How do I bypass this and either start dialing the number entered immediately or allow the user to click on the phone icon to dial it?

B4X:
Dim p As PhoneCalls
StartActivity(p.Call("1234567890"))
 
Top