You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The error when building is: /Users/xxx/Documents/dev/LifehouseIOS/_iOS/Pods/Headers/Private/Bypass/parser.h:31:10: 'soldout/markdown.h' file not found
Turns out the if you remove the use_frameworks! option from the pod file config then you can get it to build. Sadly, if you want to include any pod written in swift then you need to turn on the use_frameworks! option. A bit of a catch 22 I'd say... and its only going to get worse as more pods get converted to swift.
Think it is possible to upgrade the podspec/project or provide hints on a workaround?
The text was updated successfully, but these errors were encountered:
This is an easy fix, if you look at the pod structure. Notice that markdown.h is just plain in there with the rest of the files. Replace #include "soldout/markdown.h" with #include "markdown.h". Build and run. Working in my Swift 4 project.
Uh so my above fix is actually for a different issue (which is also necessary for Cocoapods!) but to get it to build with frameworks you also need to delete Pods/Bypass/Support Files/Bypass-umbrella.h because it totally breaks the build because it exposes the C++ headers where it shouldn't.
The error when building is:
/Users/xxx/Documents/dev/LifehouseIOS/_iOS/Pods/Headers/Private/Bypass/parser.h:31:10: 'soldout/markdown.h' file not found
Turns out the if you remove the
use_frameworks!
option from the pod file config then you can get it to build. Sadly, if you want to include any pod written in swift then you need to turn on theuse_frameworks!
option. A bit of a catch 22 I'd say... and its only going to get worse as more pods get converted to swift.Think it is possible to upgrade the podspec/project or provide hints on a workaround?
The text was updated successfully, but these errors were encountered: