Is there any way to know if a given device is AR ready?
I am doing this right now:
ArCoreApk.Availability availability = ArCoreApk.getInstance().checkAvailability(this);
if(availability.isSupported()){
Log.i("David", "Supported");
}else{
Log.i("David", "Not supported");
}
AFAIK, this only checks if ArcCore lib is installed in a device, not if a device is in the list of supported devices. Do I have to check that list one by one?