We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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 install gives issue that the homepage is missing in the podspec file.. please fix this from
Pod::Spec.new do |s| s.name = "RNIKInteractiveImageLibrary" s.version = "1.0.0" s.summary = "RNIKInteractiveImageLibrary" s.description = <<-DESC RNIKInteractiveImageLibrary DESC s.homepage = "" s.license = "MIT" # s.license = { :type => "MIT", :file => "FILE_LICENSE" } s.author = { "author" => "[email protected]" } s.platform = :ios, "7.0" s.source = { :git => "https://github.com/author/RNIKInteractiveImageLibrary.git", :tag => "master" } s.source_files = "RNIKInteractiveImageLibrary/**/*.{h,m}" s.requires_arc = true s.dependency "React" #s.dependency "others" end
TO
Pod::Spec.new do |s| s.name = "RNIKInteractiveImageLibrary" s.version = "1.0.0" s.summary = "RNIKInteractiveImageLibrary" s.description = <<-DESC RNIKInteractiveImageLibrary DESC s.homepage = "https://github.com/InterfaceKit/react-native-interactive-image-gallery" s.license = "MIT" # s.license = { :type => "MIT", :file => "FILE_LICENSE" } s.author = { "author" => "[email protected]" } s.platform = :ios, "7.0" s.source = { :git => "https://github.com/author/RNIKInteractiveImageLibrary.git", :tag => "master" } s.source_files = "RNIKInteractiveImageLibrary/**/*.{h,m}" s.requires_arc = true s.dependency "React" #s.dependency "others" end
The text was updated successfully, but these errors were encountered:
I've made a PR to fix the autolinking @alvaromb
#12
Sorry, something went wrong.
No branches or pull requests
pod install gives issue that the homepage is missing in the podspec file.. please fix this from
TO
The text was updated successfully, but these errors were encountered: