Reputation: 17247
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?
Upvotes: 2
Views: 8427
Reputation: 69228
You don't have telnet installed.
In ubuntu install it by:
$ sudo apt-get install telnet
Upvotes: 0
Reputation: 5671
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!
Upvotes: 1