I want to test how my app functions with api calls in different levels of network strength. Is there anyway to control or limit the network strength on an android device? I want to test my app during minimal cellular signal, 3g signal, 4g signal, and wifi.
Asked
Active
Viewed 523 times
1 Answers
4
When you create an emulator on Android Studio you can select the speed of the network between those speeds : Full HSDPA UMTS EDGE GPRS HSCSD GSM
You can also change it at runtime :
emulator -netspeed gsm
More infos here : http://developer.android.com/intl/es/tools/devices/emulator.html

Andros
- 4,069
- 1
- 22
- 30
-
Thank you andros, that was very helpful – Andrew El-Masry Apr 04 '16 at 19:11