clang: error: linker command failed with exit code 1 (use -v to see invocation)
when try to init @property (strong, nonatomic) WTWikitudeNativeSDK *wikitudeSDK;
- (void)viewDidLoad {
;
self.wikitudeSDK = ;
}
A
Andreas Schacherbauer
said
about 7 years ago
Hi Vasyl, Thx for pointing this out.
Our SDKs all required a real device to run on. Simulators are not supported because of the missing device sensors like camera and gyro, however you should be able to link them so that you can try the rest of your application in the simulator.
We will add the missing architectures in one of our next releases. For now you could link and use our SDK only if you build for a real device.
Vasyl