prscX / react-native-toasty

React Native: Native Toast
Apache License 2.0
153 stars 39 forks source link

pod install failed #12

Open dineshmm23 opened 5 years ago

dineshmm23 commented 5 years ago

[!] The RNToasty pod failed to validate due to 1 error:

RN 60.4 IOS 9

dineshmm23 commented 5 years ago

Pod::Spec.new do |s| s.name = "RNToasty" s.version = "1.0.0" s.summary = "RNToasty" s.description = <<-DESC RNToasty DESC s.homepage = "" s.license = "MIT"

s.license = { :type => "MIT", :file => "FILE_LICENSE" }

s.author = { "author" => "author@domain.cn" } s.platform = :ios, "7.0" s.source = { :git => "https://github.com/author/RNToasty.git", :tag => "master" } s.source_files = "RNToasty/*/.{h,m}" s.requires_arc = true

s.dependency "React"

s.dependency "others"

end

Missing homepage when install using yarn

bockc commented 5 years ago

Same here, adding anything inside the homepage allows me to build, but I'd like not to do this myself :)

bockc commented 5 years ago

@dineshmm23 Nevermind, just found out that this repo is updated but not published to npm. Replace "react-native-toasty": "0.0.4" with "react-native-toasty": "git+https://github.com/prscX/react-native-toasty.git"

Then you can run pod install without issue.

Still I don't understand why the npm version is not updated anymore.