Search code examples
javaandroidandroid-holo-everywhere

Emulating Gingerbread


I am trying to emulate Gingerbread (on the emulator) in order to test if the HoloEverywhere library works, but I am suddenly confused about how exactly to do this. There are three variables I see that can be changed:

  1. Change my project build target to 2.3.3
  2. Change the target API in my manifest to 10
  3. Change my emulator target to 2.3.3

So which of these do I need/not need to do in order to emulate Gingerbread?


Solution

  • You should create/use an emulator with target 2.3.3, and set your project's minSdkVersion to 10 for testing. There should be no need to change the targetSdkVersion as the emulator already force your project to use SDK level 10 in this case.