user401445
user401445

Reputation: 1014

Android Emulator vs Real Device [2013]

This is related to question Android Emulator vs Real Device What is the current state of art of Android emulators and what are the differences that developers should be aware of. I'm working on an app that uses bluetooth and thinking of adding a feature related to phone calling. Since I can't afford to test on all real devices so what should be the guidelines for developer to test such apps on emulators ?

Upvotes: 1

Views: 1921

Answers (2)

Geobits
Geobits

Reputation: 22342

I test basically everything on several real devices. The only thing I use an emulator for is making sure layouts look good on the configurations I don't have available(I don't have a 7" tablet, for instance). This is only after just about everything else is done.

Functionality is going to be nearly the same on any real device, and the emulator is no guarantee, since it doesn't seem to act like any real device in some cases(openGL, for instance).

Testing usability on a desktop with a mouse just doesn't make sense, unless you're writing something that going to be using that input method. There's a big difference between swiping with a finger and click-dragging with a mouse.

Even if you have the fastest emulator/virtualizer in the world, how can it be any faster than just picking up the phone next to you?

Upvotes: 1

tasomaniac
tasomaniac

Reputation: 10342

Genymotion rocks. According to the blog post of Cyril Mottier it is even much better then the hardware devices.

http://www.cyrilmottier.com/2013/06/27/a-productive-android-development-environment/

Upvotes: 2

Related Questions