Skip to content

Commit

Permalink
update DYFStore.podspec
Browse files Browse the repository at this point in the history
  • Loading branch information
Teng Fei committed Apr 21, 2024
1 parent a6ff808 commit 2fb8e93
Showing 1 changed file with 51 additions and 54 deletions.
105 changes: 51 additions & 54 deletions DYFStore.podspec
Original file line number Diff line number Diff line change
@@ -1,55 +1,52 @@

Pod::Spec.new do |spec|

spec.name = "DYFStore"
spec.version = "2.0.2"
spec.summary = "A lightweight and easy-to-use iOS library for In-App Purchases. (Swift)"

spec.description = <<-DESC
A lightweight and easy-to-use iOS library for In-App Purchases. DYFStore uses blocks and notifications to wrap StoreKit, provides receipt verification and transaction persistence.
DESC

spec.homepage = "https://github.com/chenxing640/DYFStore"
# spec.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif"

# spec.license = "MIT (example)"
spec.license = { :type => "MIT", :file => "LICENSE" }

spec.author = { "chenxing" => "chenxing640@foxmail.com" }
# Or just: spec.author = "chenxing"
# spec.authors = { "chenxing" => "chenxing640@foxmail.com" }
# spec.social_media_url = "https://twitter.com/chenxing"

spec.platform = :ios
# spec.platform = :ios, "5.0"
spec.ios.deployment_target = "8.0"
# spec.osx.deployment_target = "10.10"
# spec.watchos.deployment_target = "3.0"
# spec.tvos.deployment_target = "9.0"

spec.swift_versions = ['4.2', '5.0']

spec.source = { :git => "https://github.com/chenxing640/DYFStore.git", :tag => spec.version.to_s }

spec.source_files = "Classes/*.swift"
# spec.public_header_files = "Classes/*.h"
# spec.exclude_files = "Classes/Exclude"

# spec.resource = "icon.png"
# spec.resources = "Resources/*.png"

spec.framework = "StoreKit"
# spec.frameworks = "Security", "StoreKit"

# spec.library = "iconv"
# spec.libraries = "iconv", "xml2"

spec.requires_arc = true

# spec.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }

# spec.dependency "JSONKit", "~> 1.4"
spec.dependency 'DYFSwiftRuntimeProvider'
# spec.dependency 'DYFStoreReceiptVerifier_Swift'

Pod::Spec.new do |s|
s.name = "DYFStore"
s.version = "2.1.0"
s.summary = "A lightweight and easy-to-use iOS library for In-App Purchases. (Swift)"

s.description = <<-DESC
TODU: A lightweight and easy-to-use iOS library for In-App Purchases. DYFStore uses blocks and notifications to wrap StoreKit, provides receipt verification and transaction persistence.
DESC

s.homepage = "https://github.com/chenxing640/DYFStore"
# s.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif"
s.source = { :git => "https://github.com/chenxing640/DYFStore.git", :tag => s.version.to_s }

# s.license = "MIT (example)"
s.license = { :type => "MIT", :file => "LICENSE" }

s.author = { "Teng Fei" => "hansen981@126.com" }
# Or just: s.author = "Teng Fei"
# s.authors = { "Teng Fei" => "hansen981@126.com" }
# s.social_media_url = "https://twitter.com/tengfei"

s.platform = :ios
# s.platform = :ios, "5.0"
s.ios.deployment_target = "8.0"
# s.osx.deployment_target = "10.10"
# s.watchos.deployment_target = "3.0"
# s.tvos.deployment_target = "9.0"

s.swift_versions = ['4.2', '5.0']

s.requires_arc = true

s.source_files = "Classes/*.swift"
# s.public_header_files = "Classes/*.h"
# s.exclude_files = "Classes/Exclude"

# s.resource = "icon.png"
# s.resources = "Resources/*.png"

# s.frameworks = "Security", "StoreKit"
s.framework = "StoreKit"

# s.library = "iconv"
# s.libraries = "iconv", "xml2"

# s.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }

# s.dependency "JSONKit", "~> 1.4"
# s.dependency 'DYFStoreReceiptVerifier_Swift'
s.dependency 'DYFSwiftRuntimeProvider'

end

0 comments on commit 2fb8e93

Please sign in to comment.