Hello to make a phone call programatically I used to execute the shell command :
"su -c am start -a android.intent.action.CALL -d "+number
But this does not work anymore on android 10. I tried adding the permission android.permission.SYSTEM_ALERT_WINDOW as suggested here Make a call on Android 10 but it does not work for me.
Also I found this answer Make a call using action_call intent on Android 10 doesn't work but I'm not able to find a way to include the package com.android.dialer.telecom.TelecomUtil
TIA