-
Notifications
You must be signed in to change notification settings - Fork 72
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pod Fail - #51
Comments
yeah experiencing the same. |
go to node_modules/react-native-boundary/ios and select podspecfile and replace with @blockcowboy solution....works fine |
my problem was solved when replaced content in this file node_modules/react-native-boundry/iOS/RNBoundry.podspec require 'json' package = JSON.parse(File.read(File.join(dir, '../package.json'))) Pod::Spec.new do |s| s.authors = package['author'] s.source = { :git => "https://github.com/eddieowens/react-native-boundary.git", :tag => "#{s.version}" } s.dependency 'React' |
thanks @iAmita
|
Is there a permanent solution for this? Otherwise, we have to do this everytime we setup the project. |
[!] The
RNBoundary
pod failed to validate due to 1 error:- ERROR | attributes: Missing required attribute
homepage
.- WARN | source: The version should be included in the Git tag.
- WARN | description: The description is equal to the summary.
s.homepage = ""
Homepage "" , null throws pod install error.
Maybe Should be
s.homepage = "https://github.com/eddieowens/react-native-boundary/tree/master/ios"
This fixes bug for me, but I have to change it every time node_module updated ;(
The text was updated successfully, but these errors were encountered: