Last active
July 26, 2017 04:52
-
-
Save nishitpatel/2ccf5dc2d22137785fcab8eaf90bdcea to your computer and use it in GitHub Desktop.
IOS Xcode issues and Solutions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1: Non Moduler Framwork | |
Issue: Include of non-modular header inside framework module 'IBMMObileFirstPlatformFoundationHybrid.MFPMainViewController' | |
Solution: GO TO -> Target Build Setting -> Find "Allow Non-modular Includes In Framework Modules" -> Change to YES | |
Reference: https://stackoverflow.com/questions/27776497/include-of-non-modular-header-inside-framework-module | |
2: Cordova/CDVPlugin.h File not found | |
Solution: For xcode7 add "$(OBJROOT)/UninstalledProducts/$(PLATFORM_NAME)/include" to your Header Search Paths | |
(and you may need to set Enable Bitcode to No - was necessary for me, but may be related to different problem with xc7) | |
Reference: https://stackoverflow.com/questions/10714600/cdvplugin-h-file-not-found-in-cordova-as-component-cleaver |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment