I am attempting to transition to backendless from parse and have run through the installation steps outlined here:
https://backendless.com/documentation/messaging/ios/messaging_requirements.htm
The pod doesn’t seem to be in working order so I chose to install the iOS SDK manually. I went through all of the steps and my app continued to run without issues after adding '#import “Backendless.h” but when I added:
[backendless initApp:APP_ID secret:SECRET_KEY version:VERSION_NUM];
to didFinishLaunchingWithOptions:
I encountered the following linker error:
Undefined symbols for architecture armv7:
“OBJC_CLASS$_Backendless”, referenced from:
objc-class-ref in AppDelegate.o
ld: symbol(s) not found for architecture armv7
clang: error: linker command failed with exit code 1 (use -v to see invocation)
I feel as though I’ve set up all the search paths correctly and was just wondering if someone could give me any support or direction on where I might have gone wrong. I can provide additional info as requested.
Thanks.