How to develop an Android application without an Android device?

Any software simulator that can help develop an Android application without a real phone?

+4
source share
5 answers

The emulator is included in the Android SDK. Check out https://developer.android.com/guide/developing/tools/emulator.html

+3
source

There is one with SDK

Android emulator

+2
source

As already mentioned, the Android emulator works great, although you should be aware that it is very slow and it does not support some device sensors, such as accelerometers (although there is a property called hw.accelerometer). However, this is pretty good for testing touch screens, physical keyboards and trackballs as input devices, as well as for testing the compatibility of your application with different API levels and screen sizes.

EDIT: You can also try the Intel Atom emulator. You can download it directly from the android utility that comes with the SDK. What's cool about this is that it is based on x86, so it is much faster.

+1
source

Using Android Simulator. Even if you have a real Android phone, this is not unlike fragmentation of the platform. There are times when your application runs on the Droid, but not on the Nexus One). You can never tell.

The entire developer kit is available on developer.android.com

Good luck.

0
source

Android emulator is fully useful for general development. And with the emulator, you have several release versions in one convenient place for testing. There are several significant differences that may affect you. I never got streaming video to play on an emulator. There are speed differences in both directions, where some things are faster or slower on the device, which affects profiling. The emulator provides dummy data for some services, such as a location manager, so if you rely heavily on these services, you need a real device. I use the emulator most of the time, but always do the final testing on the device. Before release, you should try to take a real phone for several days after the final testing.

0
source

Source: https://habr.com/ru/post/1308838/


All Articles