Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I emulate 4G (LTE) network in Android SDK

Could you please help me, is it possible to emulate 4G (LTE) network in Android SDK? I need Android emulator with LTE network for testing. Or there is some other soft which can help me?

like image 333
Maksim Alekseychik Avatar asked Jan 11 '14 07:01

Maksim Alekseychik


1 Answers

I believe the emulator can simulate the speed of an LTE network, i.e. you should be able to do one of the following:

1) Start the emulator with the following option:

emulator -netspeed lte <other-options>

2) Connect to an existing emulator's console (e.g. telnet localhost 5554), then type:

network speed lte

On the other hand, I don't think there is a way to simulate a real LTE network out of the emulator, if that's what you're interested in.

like image 74
Digit Avatar answered Oct 22 '22 09:10

Digit