sajith
sajith

Reputation: 2702

how to find port number of android emulator to send sms

i am developing android messaging application i need to know port number of emulator to test my application by sending SMS to that emulator where can i find port number?i am new to android

Upvotes: 2

Views: 1386

Answers (2)

Diego Torres Milano
Diego Torres Milano

Reputation: 69248

Use:

adb emu sms send 5551234 "text"

to send sms to emulator.

Upvotes: 1

Lars
Lars

Reputation: 4082

You can use the DDMS perspective in Eclipse to send an SMS to your emulator as well. By default the window to send an SMS is on the left side of the screen in the middle. Be sure to select your emulator in the window above if it is not already selected.

Upvotes: 0

Related Questions