Reputation: 69
i want to get android emulator port number in program how do i get it????
Upvotes: 0
Views: 3074
Reputation: 41
Execute the command
netstat -aon
from command prompt. You will get all the PDIs and port numbers used by them. You can see the PID for emulator from task manager or use the command
tasklist
The process name is 'emulator-arm.exe'
Upvotes: 4