mirror of
https://github.com/JohnEstropia/CoreStore.git
synced 2026-01-13 23:23:29 +01:00
CoreStore with Cocoapods and Firebase #256
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 @viatsyshyn on GitHub (Jan 24, 2019).
Hello, I was using CoreStore in my app installed via Cocoapods frameworks mode. Now I need to have Firebase also in project, but it's incomatible with frameworks mode. When I switch off frameworks, re install pods and build app, I get CoreStore compilation errors. Mostly like
Does CoreStore thru CocoaPods work only in frameworks mode ?
@JohnEstropia commented on GitHub (Jan 24, 2019):
Not sure about the issue here. I have a project that uses
use_frameworks!in the Podfile and with both Firebase and CoreStore dependencies.As for CocoaPods' static framework support, I'm not sure most open source libraries work properly on this mode. Have you tried
pod 'CoreStore', :modular_headers => truein your Podfile?@viatsyshyn commented on GitHub (Jan 24, 2019):
I think this issue is with RN firebase wrapper actually. Added
:modular_headers => trueand# use_frameworks!. Has no effect :-(@JohnEstropia commented on GitHub (Jan 25, 2019):
After a quick google of the issue this looks like a common React Native issue:
https://github.com/react-native-community/react-native-maps/issues/2218
Someone has posted a solution here using cocoapods-fix-react-native so you may want to look at that:
https://github.com/react-native-community/react-native-maps/issues/2324
@viatsyshyn commented on GitHub (Jan 26, 2019):
Hi, ended up, including RN plugin directly into xcode project, same way as for AirMaps (react-native-maps).