Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to test my application for cases of low network connectivity. Except standing in the elevator, what is the best way to do this? I've tried wrapping my phone in an aluminium foil, but it didn't help much.
I need to test it on a real device, not in an emulator.

share|improve this question

3 Answers

up vote 10 down vote accepted

You can use emulator for this. Take a look at this page: Android Emulator. Pay attention to next two arguments:

  1. -netdelay <delay>

    Set network latency emulation to . Default value is none. See the table in Network Delay Emulation for supported values.

  2. -netspeed <speed>

    Set network speed emulation to . Default value is full. See the table in Network Speed Emulation for supported values.

share|improve this answer
thanks a lot, but as I said, I would like to test on a real device. any way I can do this on a htc or samsung phone? – Maggie Aug 11 '11 at 13:04
No you can't. Unless, you do a real field testing :) – Kumar Bibek Aug 11 '11 at 13:43
1  
My guess is that the only way to go, is to have a wi-fi router/AP which can control network speed. This is more of an network admin things. But this should theoretically be possible. – inazaruk Aug 11 '11 at 13:46
3  
I've used the elevator :) but thanx everyone – Maggie Aug 16 '11 at 19:00
1  
For simulating latency over HTTP, use ResponseCache.setDefault(new CacheResponse(){...}) and put a Thread.sleep(200) call in there. This has the advantage of being programatically controlled (i.e. only just in one activity) and not affecting other processes. However, for a more realistic test, you should set the limit on your router or using the tc command (from busybox). – Anonymous Mar 14 '12 at 21:53

This may sound a little crazy, but a microwave oven serves as a microwave shield. Therefore, putting your device inside a microwave oven (DO NOT turn on the microwave oven while your device is inside!) will cause your signal strength to drop significantly. It definitely beats standing inside an elevator...

share|improve this answer
lol :D thanks for the answer – Maggie Dec 29 '11 at 9:48
I've spent an hour trying to test features in my app that only surface with bad connectivity and this did the trick. Thanks! – Jon Ross May 22 '12 at 1:04
I don't know what kind of microwave ovens you've got, but mine don't do **** to wireless connectivity. – JNissi Jan 8 at 10:30
1  
JNissi, if your microwave isn't dropping the signal I wouldn't be using that microwave. – senkir Feb 1 at 22:26

Do you want to test for no network connection, or just a slow network connection? If the former, you can go to Settings > Wireless & networks > Airplane mode and turn Airplane mode on. That will let you test network unavailability on an actual device.

share|improve this answer
Thanks, but I was trying to test for low network connectivity. Eg. for a low EDGE signal or something like that. – Maggie Sep 23 '11 at 21:21
Ah. Too bad you can't turn off 3G and drop back to EDGE roaming. At least, on my phone you can't. – David Conrad Sep 24 '11 at 3:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.