Build Failing Compiling GooglePlusShare.o when using RNShare.podspec
See original GitHub issueI am trying to use the defined podspec to setup my xcode dependencies but I am getting an issue w/ the GooglePlusShare files. Does this pod for you as is?
Failure
The following build commands failed:
CompileC /<Actual Build Path>/ios/build/Build/Intermediates/RNShare.build/Debug-iphonesimulator/RNShare.build/Objects-normal/x86_64/GooglePlusShare.o GooglePlusShare.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
(1 failure)
Pod declarations. (React is being pulled in locally as the cocoapods.org podspec is deprecated)
pod 'React', :path => '../node_modules/react-native',
:subspecs => [
'Core',
'RCTPushNotification',
'RCTLinkingIOS'
]
pod 'RNShare', :path => '../node_modules/react-native-share'
Issue Analytics
- State:
- Created 7 years ago
- Comments:10
Top Results From Across the Web
Build Failing Compiling GooglePlusShare.o when using ...
I am trying to use the defined podspec to setup my xcode dependencies but I am getting an issue w/ the GooglePlusShare files....
Read more >Flutter build ios failing with: Error running pod install
Your cocoapods installation was broken. So try removing the brew version first via "brew uninstall cocoapods" Then install cocoapods via sudo ...
Read more >Pre-compiling dependencies - CocoaPods Guides
CocoaPods Binary will pre-compile your Pods during pod install , and then add the binary assets (e.g. .framework files) into the generated Xcode...
Read more >Incremental compilation has been disabled - Apple Developer
Hey Developers I'm facing some strange situation, I'm getting multiples issues related to optimization on Release build configuration, I'm using Xcode 13.2.
Read more >CocoaPods overview and setup - Kotlin
You can build the whole Kotlin project with Gradle and not ever ... In build.gradle(.kts) of your project, apply the CocoaPods plugin as ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Unfortunately 1.0.18 introduces a breaking change by referring to the new location of native headers that were moved in react-native 0.40.0. This means 1.0.18 is only compatible with react-native 0.40+.
We hit the same problem yesterday because our package.json contained:
… so npm automatically selected 1.0.18 on a fresh install.
Probably 1.0.18 should have been a major version bump to 2.0.0 as recommended in the react-native release notes for 0.40.0?
npm install react-native-share@1.0.17 --save
??