Я просто хочу открыть Карты Google на AVD и изменить местоположение GPS с помощью telnet, чтобы Карты Google изменили мое отображаемое местоположение, но я не могу изменить местоположение Карты Google:
Я загружаюсьдо AVD, я делаю adb devices
, я вижу
emulator-5554 device
, затем я делаю telnet localhost 5554
и вижу приглашение OK
user:~ userName$ telnet localhost 5554
Trying ::1...
telnet: connect to address ::1: Connection refused
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
Android Console: Authentication required
Android Console: type 'auth <auth_token>' to authenticate
Android Console: you can find your <auth_token> in
'/Users/michaelcas/.emulator_console_auth_token'
OK
затем с ~/.emulator_console_auth_token
копирую токен BKLphG9dWG2Isxwb
и аутентифицируюсь с помощью токена
user:~ userName$ telnet localhost 5554
Trying ::1...
telnet: connect to address ::1: Connection refused
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
Android Console: Authentication required
Android Console: type 'auth <auth_token>' to authenticate
Android Console: you can find your <auth_token> in
'/Users/michaelcas/.emulator_console_auth_token'
OK
auth BKLphG9dWG2Isxwb
Android Console: type 'help' for a list of commands
OK
, затем я открываю Google Maps на AVD, затем устанавливаю GPS через telnet
geo fix -120.65962 35.28275
, но мое местоположение на Google Maps не меняется.Почему это?