Start a new topic

AVD minimum requirements not fulfilled

AVD minimum requirements not fulfilled

hi all

like user matteo d'amico in this post, i can't start SimpleARBrowser from the emulator, that is giving me "minimum requirements not fulfilled" error.

i've tried AVD with 2.3.3 to 4.0, with all kind of virtual hardware mounted on it, but no results...

what's wrong with what I am doing?

thanks in advance
up?
Hi there,

Sorry fo delayed response.
Could you please check if your simulator has openGL 2.0 capabilities?
http://stackoverflow.com/questions/4455783/does-the-android-emulator-support-opengl-es-2-0

you may check e.g. via code using:

final ActivityManager am = (ActivityManager)context.getSystemService( Context.ACTIVITY_SERVICE );
final ConfigurationInfo info = am.getDeviceConfigurationInfo();
finalboolean hasOpenGL20 =  info.reqGlEsVersion >= 0x20000;

in case this is "true" on Your device, but "false" in emulator you are using an unsupported emulator.

Hope that helps.

Cheers,
Andreas
you are right, actually seems that my AVD emulator does not support openGL, even if i set "GPU emulation" to 'yes'.

according to official docs, standard emulator supports openGL only with API15+, and i've tried with all API versions from 8 to 14 (sigh!).

i'm downloading newer API packages, i will inform you if the problem solves.

thanks!
nothing... i tried with API16 with sdk tools rev20, but doesn't work...

in official docs i found this note:


Note: Not all applications are compatible with graphics hardware acceleration. In particular, the Browser application and applications using the WebView component are not compatible with graphics acceleration..


does SimpleARBrowser/Wikitude SDK fall into this case?
Hi again,

Yes, the SDK is using the WebView component.
You're therefore only able to test/develop the SDK on a device.

Sorry for inconvenience,
Andreas
Hi again,

Yes, the SDK is using the WebView component.
You're therefore only able to test/develop the SDK on a device.

Sorry for inconvenience,
Andreas


Thanks, I will test it on device
Login or Signup to post a comment