On Wed, May 30, 2012 at 4:29 PM, JoshWright <
joshin...@gmail.com> wrote:
> Would be possible to directly load the Rdio framework?
Yes, I was able to compile and run my test iOS app using the -force_load option.
First remove the Rdio.framework from the 'Link Binary with Libraries'
build phase. Next in the 'Other Linker Flags', add the following
command:
-force_load $(SOURCE_ROOT)/contrib/Rdio.framework/Versions/Current/Rdio
You will need to change the path to match your setup. In my project,
Rdio.framework is in a 'contrib' folder. You were close with your
suggestion, the -force_load option needs a path to the Rdio object
file, not the framework directory.
This option should work for both the simulator and an iOS device since
Rdio object file contains the information for both architectures.
-- Devin