This sounds very strange. ARchitect required Android 2.2+ and openGL 2.0, these are the only checks made in this method (for now). We will apply some very minor adjustments in next minor SDK update. Could you please double check that this method always returns "false" but also post the devices here.
Thanks in advance.
m
matteo d'amico
said
almost 9 years ago
How can i set up the AVD for support the minimum requirements of the Exampe(SimpleArBrowser)?
A
Andreas Fötschl
said
almost 9 years ago
Hi Matteo!
Thanks for your interest in our new SDK.
Currently you can reuse the SimpleArBrowser Sample but manually "inject" the placemark information via archtectView.callJavascript()...
final JSONArray array = new JSONArray();
for ( final POI poi : pois ) { array.put( poi.toJSONObject() ); }
... Anyway: We will provide a "best practice" Sample for deprecated API users by end of April and provide as sample-apps - stay tuned!
Kind regards, Andi
m
matteo d'amico
said
almost 9 years ago
Hi Andreas, I thank you for the quick answer.Anyway i didn't find the solution right now. The problem that occours is this check:
if(!ArchitectView.isDeviceSupported(this)) { Toast.makeText(this, "minimum requirements not fulfilled", Toast.LENGTH_LONG).show();
i have tried with every AVD from Android 2.2 to 3.2 and also with my personal device with 2.3 inside, but i cannot cross this check. Everytime it shows "minimum requirements not fulfilled". What did i do wrong?
and anyway if i skip this step just putting it in a comment, it raises errors:
matteo d'amico