Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to configure an Android emulator for the Kindle Fire?

I want to configure an emulator to be compatible with the Kindle Fire, including its resolution. What do I have to change in the emulator settings (or elsewhere)?

like image 830
Android_Developer Avatar asked Nov 24 '11 07:11

Android_Developer


People also ask

Can you get emulator on Kindle Fire?

With high resolution device emulators such as the Kindle Fire HD 8.9”, we recommend enabling GPU emulation. This will deliver a smoother graphical experience and faster start-up experience.

Why is my Android Emulator not working?

If the emulator fails to launch due to the error vulkan-1. dll cannot be found , you probably need to update the emulator. To update the emulator in Android Studio, go to Tools > SDK Manager and install the latest stable version of Android platform.


2 Answers

From the Amazon Kindle Fire FAQ:

You should configure your emulator with the following characteristics:

  • Width: 600px
  • Height: 1024px
  • Abstracted LCD Density: 169
  • Target: Android 2.3.4 - API Level 10
  • RAM: 512 MB

*Note: The device will reserve 20px to display a soft key menu, making the effective portrait resolution 1004px high x 600px wide and the effective landscape resolution 580px high x 1024px wide.

like image 155
Animesh Avatar answered Sep 19 '22 16:09

Animesh


Amazon recently released a new kindle fire add-on that you can easily install. It emulates the look and feel of the devices and can be set up in eclipse or from the command line. Check the documentation here for how to install and run it:

https://developer.amazon.com/sdk/fire/emulator-guide.html

Also because the kindle fire uses API level 10 it will not use your resource folders that use the swdp qualifier, so I have found using the -large-mdpi suffix for your relevant resource folders works well.

like image 21
ZakR Avatar answered Sep 17 '22 16:09

ZakR