ios - Generate simulator build -
i working on app needs data facebook app. facebook want release simulator build. have followed fb's instruction letter when try build simulator package xcodebuild -arch i386 -sdk iphonesimulator7.1
following error:
ld: library not found -lpods clang: error: linker command failed exit code 1 (use -v see invocation) ** build failed ** following build commands failed: ld build/release-iphonesimulator/olabord.app/olabord normal i386 (1 failure)
i suspect has cocoa pods don't know how deal it. desperately need guidance or workaround...!
i had same problem. since you're working workspace file pods need run following in terminal:
xcodebuild -workspace {project name}.xcworkspace -scheme {project name} -arch i386 -sdk iphonesimulator7.1
the fb instructions .app file should in: {base directory}/build/release-iphonesimulator/{projectname}.app
in case ended in /developer/derived data/{project name}-{long string of random letters}/build/products/debug-iphonesimulator
Comments
Post a Comment