Skip to content

Tool to access emulator programmatically through the telnet interface.

Notifications You must be signed in to change notification settings

MelEnt/AndroidTelnetEmu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

GEO TESTING ANDROID EMULATOR

to programatically change the android emulators GPS position you need to connect to it (the emulator) via telnet through port 5554 (default)

this can be done in the test code using a library or a socket that communicates using the telnet protocoll manually, the code that we made manually connects to the emulator via telnet

the issue with connecting to the emulator using telnet from a tests is that the emulator in recent versions requires an authentication token in order to allow you to execute commands (such as setting the GPS manually) the auth token is written in a hidden file in the host computer (the computer that runs the android emulator) an example is /Users//.emulator_console_auth_token

telnet does provide you with the path to this file which differ on diffrent operating systems, however since the android tests that will connect through telnet to the emulator runs on the emulator itself, it cannot access any files on the host computer

the solution to this is to have a program on the host computer connect to the emulator via telnet to get the path to the file, then use ADB to push the auth file onto the amulator, allowing the tests to read the file from its emulated device to get the auth token and connect via telnet

once connected to the emulator with telnet, authenticate by sending the string auth

example: auth 54kj32re09

afterwards it will unlock all the commands include the geo command which is used to tell the emulator to fake its GPS position geo fix

example: geo fix 34.28 -24.01

About

Tool to access emulator programmatically through the telnet interface.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages