I have a static library project included to my main project. I followed this tutorial. It worked when I had Xcode 5. It stopped working after I updated to Xcode 6. What might be a reason? I use CocoaPods 0.35.0.
Xcode 6 static library project
1.6k Views Asked by Artem Stepanenko At
1
There are 1 best solutions below
Related Questions in XCODE
- Using Storyboard Reference
- Getting this message in my console in xcode "Ignoring restoreCompletedTransactionsWithApplicationUsername: because already restoring transactions"?
- Error when creating UIImage
- fade in an bounce animation subview
- How to delete static library ".a" file from xcode project?
- Error in main.storyboard
- Is the compiler Xcode uses to produce Assembly code a bad compiler?
- Using paths bonded to a XCode project to be shared
- How to set the time of Local notification in app to random between two times? (swift)
- "Invalid Signature, code object not signed at all" error
- Alarming memory increase with custom segue
- Display both alertTitle and AlertBody on a custom WatchKit notification
- How to make a CocoaPods project work on OS X El Capitan & Xcode 7 Beta?
- Cannot use CTRL+Drag for making a button action in Xcode?
- Labels properties changing in Xcode
Related Questions in XCODE6
- iOS: None of the valid provisioning profiles allowed the specific entitlements
- UIWebView not loading URL in simulator
- How to set the time of Local notification in app to random between two times? (swift)
- Can Clang Static Analyzer be used with Swift?
- Xcode Interface Builder loading XIB file show view with transparency
- Getting dyld_fatal_error Xcode 6.3.2
- UIVIew from XIB with Autolayout to UItableView Header
- How can I get the length of text entered into UITextView as the user types?
- SDWebImage error for loading image
- UIWebView contents are not showing
- How can I get an image to fit the whole screen?
- Custom font iOS 8 not effect in device
- Swift: NSDate losing sub-Second precision after loading
- Property 'package_number_7' not found on object of type 'User *' after Lightweight Migration
- Xcode 6 archive process does not fire pre/post/build phase script for auto build increment
Related Questions in STATIC-LIBRARIES
- Disable OpenCL in OpenCV completely
- How do i use a bunch of .h and .cpp files to create a static library that can be used in another c++ Project
- Android NDK - Including prebuilt static libraries gives undefined reference errors
- iOS framework resource files
- How can I add a static library to Android NDK using the build.gradle file?
- Compiling a static version of wxWidgets
- A lot of undefined reference errors when using wxWidgets(3.0.2) as static build
- Prebuilding different kind of static library in Android NDK
- C++ Library distribution with a Main()
- Static library link issue with Mac OS X: symbol(s) not found for architecture x86_64
- Compile Curl Visual Studio - unresolved external symbol
- VS2012 Identifer not found when part of static lib
- Best way to extend a method of Google library
- Embendding Python 3.4 into MacOS app
- Creating LSD-SLAM static library for iOS
Related Questions in COCOAPODS
- Cannot pod spec lint because of undeclared type errors
- CocoaPods Failed to Lint A Podspec Due to Objective-C Generated Interface Header Not Found
- Cocoapods library not found for apple watch extensions
- PureLayout in Swift with Cocoapods
- Can't find Pods.modulemap - looking in wrong directory
- Update AWSS3 with Cocoapods
- Error installing cocoapods: Failed to build gem native extension
- Google Maps 1.10.1 iOS with cocoapods giving duplicate symbol error
- install cocoapods library with specific name
- How to use YouTube iOS player helper with use_frameworks! with CocoaPods
- Google Sign in CocoaPods Install in Swift?
- How to remove Cocoa-Pod from project?
- Getting error in Adjust library, Integrated with Pods
- Cocoapods generate bad xcconfig file - no header search path
- Google Map flickering in iOS
Related Questions in LINKER-FLAGS
- Setting LD_LIBRARY_PATH from inside R
- Performance loss with gcc linker optimization flag -flto
- Other Linker Flags missing in Xcode Build Settings
- Missing link flags for targets when using set_target_properties and LINK_FLAGS
- Linker failed in D compiler (dmd)
- SEGGER Embedded Studio .a file linkage questions
- Xcode 6 static library project
- Duplicate symbols between Facebook SDK and AWS v2
- _cvLoadImage undefined symbols linking issue
- Why few of my symbols don't appear in my .so file?
- CGO compilation error: invalid flag in go:cgo_ldflag: -Wl,--enable-stdcall-fixup
- Difference between add_compile_options and add_link_options also flags each option supports
- How to add linker option to CMake bootstrap?
- ld Mac OS 10.13.6 : unknown option: -EL
- What do link editor (LD) params mean?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
When using Cocoapods, you should not set "Other Linker Flags" manually. This is automatically set as part of the pod install process.
Part of the Tutorial that you linked to tells you to set the Other Linker Flags manually.
Go to your project and clear Other Linker Flags value on the project level and the target level (if it is in bold) by highlighting the value and hitting delete.
Once deleted, you should see the inherited value coming from the Pods.xcconfig file. Something like:
You can verify this by clicking on "Levels" to the left of the search bar.
This should have you cocoapods libraries sorted. Once this is working add the path to your static library headers by setting
"Header Search Paths"to"${inherited} /path/to/static/libary/headers"