From b7025b7089ef58440e149e4ca095c9a569fa136c Mon Sep 17 00:00:00 2001 From: mlch911 Date: Thu, 18 Jan 2024 16:52:42 +0800 Subject: [PATCH] Add CocoaPods Support --- CachedAsyncImage.podspec | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 CachedAsyncImage.podspec diff --git a/CachedAsyncImage.podspec b/CachedAsyncImage.podspec new file mode 100644 index 0000000..4522109 --- /dev/null +++ b/CachedAsyncImage.podspec @@ -0,0 +1,24 @@ +Pod::Spec.new do |s| + + s.name = "CachedAsyncImage" + s.version = "2.1.1" + s.summary = "CachedAsyncImage is the simplest way to add cache to your AsyncImage." + + s.description = <<-DESC + CachedAsyncImage is the simplest way to add cache to your AsyncImage. + DESC + + s.homepage = "https://github.com/lorenzofiamingo/swiftui-cached-async-image" + s.license = { :type => "MIT", :file => "LICENSE" } + s.author = { "Lorenzo Fiamingo" => "https://github.com/lorenzofiamingo" } + + s.ios.deployment_target = "13.0" + s.tvos.deployment_target = "13.0" + s.osx.deployment_target = "10.15" + s.watchos.deployment_target = "6.0" + + s.source = { :git => "https://github.com/lorenzofiamingo/swiftui-cached-async-image.git", :tag => "#{s.version}" } + + s.source_files = "Sources/**/*" + +end