react-native-interactive-image-gallery icon indicating copy to clipboard operation
react-native-interactive-image-gallery copied to clipboard

Please fix the podspec file for RN > 0.60

Open sam17896 opened this issue 5 years ago • 1 comments

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

sam17896 avatar Jul 23 '19 03:07 sam17896

I've made a PR to fix the autolinking @alvaromb

https://github.com/InterfaceKit/react-native-interactive-image-gallery/pull/12

tankers746 avatar Oct 14 '19 07:10 tankers746