wannik
wannik

Reputation: 12706

Android Studio emulating very slow network speed

I set the network speed of AVD to GSM but it takes very short amount of time to download a 600k file. I'd like to lower the emulated network speed in Android Studio.

Upvotes: 3

Views: 1829

Answers (1)

Bogdan Kobylynskyi
Bogdan Kobylynskyi

Reputation: 1220

From the official emulator tutorial:

To set the network speed at emulator startup, use the -netspeed emulator option with a supported value, as listed in the table below. Here are some examples:

emulator -netspeed gsm
emulator -netspeed 0.1 0.1

To make changes to network speed while the emulator is running, connect to the console and use the netspeed command with a supported value.

network speed 0.1 0.1

Upvotes: 1

Related Questions