Reputation: 51
I intend to use the Android Emulator to send/receive SMS.
I send SMS to the emulator using the sms send
command. I'm aware of emulators being able to converse with each other over SMS but would it possible to receive that the SMS reply sent from an Android Emulator on a external TCP port?
Any pointers would be very appreciated.
Many thanks.
Upvotes: 4
Views: 5100
Reputation: 928
You can start 2nd Android Virtual Device, one for send SMS another for retrieve SMS.
In the receiver field, you have to input the port number of another AVD, it's in the left up corner od the AVD window (ex. 5554:myAVD, actually it's port number).Of course you have to create 2 AVDs.
And you can use ddms to monitor the logcat message between these two AVDs.
Upvotes: 2