Last active
December 1, 2020 03:37
-
-
Save siuying/284fa585dddfc136af7ff19039a11875 to your computer and use it in GitHub Desktop.
RemoteImage podspec
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pod::Spec.new do |spec| | |
spec.name = "RemoteImage" | |
spec.version = "4.0.0" | |
spec.summary = "Swift package for a SwiftUI remote image view." | |
spec.description = <<-DESC | |
This Swift package provides a wrapper view around the existing SwiftUI Image view which adds support for showing and caching remote images. In addition you can specify a loading and error view. | |
DESC | |
spec.homepage = "https://github.com/crelies/RemoteImage" | |
spec.license = "MIT" | |
spec.author = { "Christian Elies" => "" } | |
spec.ios.deployment_target = "12.0" | |
spec.osx.deployment_target = "10.15" | |
spec.source = { :git => "https://github.com/crelies/RemoteImage.git", :tag => "#{spec.version}" } | |
spec.source_files = "Sources/RemoteImage/**/*.swift" | |
spec.public_header_files = "Sources/RemoteImage/**/*.h" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment