Tigga and now the question is how to automate it? I need to fake 500+ calls
I wrote a script in linux.
After the emulator starts, confirm the port by running adb devices
Change Call_Count to how many calls you want.
This will count down from Call_Count to 1 and call each of those numbers.
After the script finishes, scroll to the bottom of the call history to see the oldest call # -- this is the maximum size of the call history. (If you see your Call_Count number, call another time to confirm it can't hold anymore calls).
My run of it: https://imgur.com/CWd2aid
The google dialer holds more than 700
#!/bin/bash
Token=$(cat ~/.emulator_console_auth_token)
Call_Count=700
(
echo "auth $Token"
sleep 0.2
for i in $(seq $Call_Count -1 1); do
echo "gsm call $i"
sleep 0.2
echo "gsm cancel $i"
sleep 0.2
done
) | telnet localhost 5554
echo "Spam calls complete"