Is there a way to run the Android emulator in CDMA mode?
I nee开发者_如何转开发d this in order to debug CDMA data (SMS recieved and sent)
This can be done by sending commands to your Android emulator via Telnet.
To begin make sure your android emulator is running, then in a console:
telnet localhost 5554
.
This will connect you to the emulator (note that the port 5554 may change depending on your setup. This port will be in the title of the emulator.)
Now enter gsm voice off
. You can also tweak different network parameters; just type help
for available commands.
精彩评论