Hello, my app with Wikitude SDK works fine on Android Sony Xperia LT26i 4.0.Load perfectly with POIS JSON received, displayed and north indicator radar and lets you interact with all the features of the app.
However, Galaxy Ace with android 2.2.5 charge the camera but does not load the radar or POIS.
I get several errors:
01-09 09:13:14.070: E / SensorManager (2745): unregisterListener :: all sensors, listener = com.wikitude.tools.listener.OrientationManager $ DeligatedSEL @ 40523218
01-09 09:13:21.970: E / libEGL (2745): called unimplemented OpenGL ES API
01-09 09:13:21.970: E / Web Console (2745): Uncaught ReferenceError: AR is not defined at: 1
And this is the way we implement ArchitectView.isDeviceSupported
/ / check if the device fulfills the SDK'S Minimum Requirements
if (! ArchitectView.isDeviceSupported (this))
{
Toast.makeText (this, "The device does not meet the minimum requirements." Toast.LENGTH_LONG.) Show ();
this.finish ();
return;
}
Presumably, if the device does not support the window should be closed but not closed, just load the camera and shows neither radar nor POIS.
thanks
A
Andreas Fötschl
said
almost 11 years ago
Hi again!
Concerning the isDeviceSupported() check: We recommend to simply do not offer AR-View funcitonality in your UI when device is unsupported (e.g. remove AR-View button in your app and tell user somewhere in UI that his device is not "AR-ready")
I presume you fixed the issue you described above, right? If not: Please double-check your implementation against the sample-projects provided, especially the life-cycle calls and the manifest set-up.
José Garcia
2 people have this problem