Android : simulate / mimic a call programmatically on device -
is possible simulate or mimic call coming in on android device programmatically device (not connected computer)? doing safety demo dangers of calls while driving , prefer not have create own copy of call app.
yes can!
use adb that, emulators can use android-studio tools.
adb -s <serial> shell start -a android.intent.action.call -d tel:0612345678
where <serial>
should device or emulator id (like emulator-5555)
if want on device itself, can try call (yes kind of works on devices).
Comments
Post a Comment