ios - ARKit Unable to run the session, configuration is not supported on this device -
using arworldtrackingsessionconfiguration , error on iphone 6 plus unable run session, configuration not supported on device
what can be?
you can check arkit support programatically @ runtime using 'issupported` property of arconfiguration.
if (arconfiguration.issupported) { // arkit supported. can work arkit } else { // arkit not supported. cannot work arkit }
following ios devices (with ios 11 installed) supporting arkit:
- iphone x
- iphone 8 , 8 plus
- iphone 6s , 6s plus
- iphone 7 , 7 plus
- iphone se
- ipad pro (9.7, 10.5 or 12.9)
- ipad (2017)
here reference links related arkit support & ios device configurations:
arkit runs on apple a9 , a10 & a11 bionic chip processors.
iphone models - (chip)
ipad models - (chip)
wiki
Comments
Post a Comment