I've been successfully using DBAccess as a cocoapod in my project for several months. A lot of changes have taken place in my tool chain in the last few weeks and now my build is failing. pod install indicates it installed DBAccess (1.6.9). Xcode version is 7.0.1. pod --version is 0.39.0.
On building my app in Xcode I see the linker warning: ld: warning: directory not found for option '-F/proj/DBAccess'
the framework actually lives in /proj/Pods/DBAccess
This warning isn't a problem (other than perhaps an indication of a bad installation) and I can build, run, and test app fine.
However, when I try to archive the app for submission to the app store, using jenkins/fastlane/pilot/xcode CLI, I get the following linker error:
ld: bitcode bundle could not be generated because '/Users/jenkins/.jenkins/jobs/proj/workspace/Pods/DBAccess/DBAccess.framework/DBAccess' was built without full bitcode. All object files and libraries for bitcode must be generated from Xcode Archive or Install build for architecture armv7
Here is the command line call that Jenkins made to arrive at this error: set -o pipefail && xcodebuild -workspace './proj.xcworkspace' -scheme 'proj' -destination 'generic/platform=iOS' -archivePath '/Users/jenkins/Library/Developer/Xcode/Archives/2015-10-12/proj 2015-10-12 16.33.37.xcarchive' archive | tee '/Users/jenkins/Library/Logs/gym/proj.log' | xcpretty
This error has me stumped because the DBAccess website claims 1.6.9 was built to fix this problem (http://www.db-access.org/downloads). Is anyone else having issues with DBAccess installed with cocoapods?