"device not supported" on Samsung Tablet Tab3 Lite (SM-T110). Android 4.2.2
Same APK we created, it is working on others devices and tablets.
However, we installed and tested your SDK example APK, it works.
Any ideas?
G
Gabriele Boccone
said
over 9 years ago
Hi, I've read the specification of this device, and I see it lacks a magnetometer.
Are you testing with the latest SDK release? We recently added preliminary support for devices without geo-IR support, so it should work if you disable sensors and only work with image recognition.
If it still doesn't work as expected, please send a log from the device and we will investigate further into this issue.
Gyroscope is not officially supported yet, and I don't have much information about this particular device. Are you using the WiFi only model, or the 3G/4G?
For Geo-AR support we need the following sensors: accelerometer, GPS or other location service, and magnetometer. Do you know if your device has a magnetometer?
R
Roberto Viola
said
over 9 years ago
I guess it's the 3g/4g model (i haven't in my hands, i just received a notification about the error from a customer of us).
Could i debug in some other way why it says "device not supported"?
Thanks
G
Gabriele Boccone
said
over 9 years ago
Hi
You could check which AR mode is supported on a device by calling ArchitectView::getSupportedARModeForDevice(Context) from your android code.
The result of this method is a bitmask with the supported AR modes:
public static interface ARMode { public static final int IR = 0x01; public static final int GEO = 0x02; }
What this method does:
- check that the device is running at least Android 2.3 and supports OpenGL 2.0 - check that the device has a rear camera - check if a location provider is available - check if the device has a sensor of type Sensor.TYPE_MAGNETIC_FIELD - check if the CPU supports NEON extensions (for image recognition)
Frederick Chung