m2k_72
m2k_72

Reputation: 61

Test android program on non nexus emulators

i want test my android programs on non nexus emulators like Samsung mobiles or Sony or ... but android device manager in android studio only has nexus devices. how i do it? thanks.

Upvotes: 3

Views: 498

Answers (1)

CommonsWare
CommonsWare

Reputation: 1007534

The Android emulator does not emulate "nexus devices", or "Samsung mobiles", or Sony devices. It emulates generic Android devices.

To help you set up Android emulators, the AVD Manager has you start with a "hardware profile". That is there to set up things like screen size and density, but that's about it. The AVD Manager ships with hardware profiles for Nexus-series devices. But:

  • You can use the "New Hardware Profile" button to define any hardware profile that you want

  • Some manufacturers, like Sony, offer dedicated hardware profiles that you can load into your SDK Manager

  • Occasionally, a manufacturer may actually ship emulator images that can be used along with dedicated hardware profiles (Amazon used to do this, but doesn't when I last checked)

Upvotes: 1

Related Questions