Fixed podspec to play nicer with other native libraries #504
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was an issue with including both RN Skia / Renanimated where running pod install failed with the following error message:
Can't merge user_target_xcconfig for pod targets:....
This was caused by both RN Skia and Reanimated trying to set the active C++ version to two different versions.
Running
npx pod install ios
worked - but the error is visible when installing with local cocoapods:pod install ios
in the root of a new project.Moving setting the xcconfig variables to the
pod_target_xcconfig
solved the issue.Tested in iOS on a new project using local cocoapods. Also verified that the included settings from the podspec file are set correctly in Xcode.
Fixed #405