Reputation: 41
I im trying to use ARKit on my iPhone 5s, but when I build and run I get this message:
"This iPhone 5s (Model A1457, A1518, A1528, A1530) is running iOS 11.3 (15E216), which may not be supported by this version of Xcode."
I have other projects that I build and run with no problem on the device, but for some reason it won't when I include ARKit.
Upvotes: 2
Views: 3660
Reputation: 912
ARKit is not supported on iphone 5s but you can develop AR projects using AR.js which enables AR on Web. You can insert a WKWebView in your app and use AR.js inside it.
Upvotes: 2
Reputation: 445
You need to install Xcode 9 or later which support ARKit All devices having A9 processor (or newer) support ARKit
Upvotes: 0
Reputation: 661
Devices Supported by ARKit.
ARKit is supported on devices with A9 or later processor which includes:
Why Use ARKit?
Although there is a limitation on devices, why use ARKit?
Other AR third party Frameworks:
If you have the necessity to support most of the iOS devices. You can go for these third-party frameworks.
Vuforia (popular and supports above iOS 6, they have support for both iOS and android)
are few to mention.
Upvotes: 3
Reputation: 56
From the ARKit documentation:
ARKit requires an iOS device with an A9 or later processor.
Your iPhone 5s has an A7 processor, which does not support ARKit.
Upvotes: 2