2

i want to learn how to mock up location in android device and develop a location based app. My problem is when I say adb shell in the command prompt it lets me go into the emulator with # symbol.

problem starts here

When I enter telnet localhost 5554 to telnet the device it says telnet: not found

what could be the problem?? am I doing something wrong?

Jay Mayu
  • 17,023
  • 32
  • 114
  • 148

2 Answers2

1

You don't have telnet installed.

In ubuntu install it by:

$ sudo apt-get install telnet
Diego Torres Milano
  • 65,697
  • 9
  • 111
  • 134
1

you don't have to telnet with adb. Just use a normal command line window to type in telnet localhost 5554 - but don't enter adb before!

Blitz
  • 5,521
  • 3
  • 35
  • 53