Hi Guys
Don’t know if you can help me with this.
Was trying to add Firebase Crashlytics to my iOS app in Xcode10. Followed the docs but when I build I get these errors which somehow seem related to Backendless. These are the errors I get:
Undefined symbols for architecture arm64:
"_OBJC_CLASS_$_MKCircleView", referenced from:
objc-class-ref in backendless.a(BEMapView.o)
"_OBJC_CLASS_$_MKCircleRenderer", referenced from:
objc-class-ref in backendless.a(BEMapView.o)
"_OBJC_CLASS_$_MKCircle", referenced from:
objc-class-ref in backendless.a(BEMapView.o)
"_OBJC_CLASS_$_MKPinAnnotationView", referenced from:
objc-class-ref in backendless.a(BEMapView.o)
"_OBJC_METACLASS_$_MKMapView", referenced from:
_OBJC_METACLASS_$_BEMapView in backendless.a(BEMapView.o)
"_OBJC_CLASS_$_MKMapView", referenced from:
_OBJC_CLASS_$_BEMapView in backendless.a(BEMapView.o)
ld: symbol(s) not found for architecture arm64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
I can’t seem to solve this, any ideas?
This is my podfile:
target 'A2' do
pod 'Backendless'
pod 'Fabric'
pod 'Crashlytics'
pod 'Firebase/Core'
end
Any clues/ideas to what I may have setup wrong?
Mike