My other libraries not allow me to set -ObjC or all_load flags. So I need to use -force_load to link my library.
I have "GoogleOpenSource.framework" & "GooglePlus.framework" under my project, so how can I map those correctly to work.
I have set paths like this:
-force_load $(PROJECT_DIR)/Project_name/GooglePlus.framework/Versions/A/Headers/GooglePlus.h
-force_load $(PROJECT_DIR)/Project_name/GoogleOpenSource.framework/Versions/A/Headers/GoogleOpenSource.h
under the Other linker flags, but it's not working.
What am I doing wrong here?