mirror of
https://github.com/JohnEstropia/CoreStore.git
synced 2026-01-11 20:00:30 +01:00
CoreStore/CoreStore-Swift.h' file not found #307
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @rubenspessoa on GitHub (Jan 28, 2020).
Linked to this issue
I'm having the same issue when I install CoreStore via cocoapods.
'CoreStore/CoreStore-Swift.h' file not foundVersions:
CoreStore ~> 7.0.1
XCode ~> 11.3.1 (11C504)
Cocoapods ~> 1.8.3
Until now I couldn't find any workaround, but I noticed that there's no
CoreStore-Swift.hfile in the lib. 🤔@rubenspessoa commented on GitHub (Jan 28, 2020):
The solution is to add
use_frameworks!in the Podfile. Since the CoreStore has some obj-c code in it, we should use frameworks instead of static libraries. I believe this information would be a great addition to the documentation @JohnEstropia .Happy coding!
@JohnEstropia commented on GitHub (Jan 28, 2020):
I see, thanks for the heads up! Glad it was sorted out 👍
@skytoup commented on GitHub (Apr 4, 2020):
Sometimes Cocoapods use static libraries to manage third-party libraries, maybe it would be better to make them import compatible.