-
Notifications
You must be signed in to change notification settings - Fork 8
/
DYFStore.podspec
51 lines (39 loc) · 1.85 KB
/
DYFStore.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
Pod::Spec.new do |s|
s.name = "DYFStore"
s.version = "2.3.0"
s.summary = "[Swift] A lightweight and easy-to-use iOS library for In-App Purchases."
s.description = <<-DESC
TODU: [Swift] 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/itenfay/DYFStore"
# s.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif"
s.source = { :git => "https://github.com/itenfay/DYFStore.git", :tag => s.version.to_s }
# s.license = "MIT (example)"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Tenfay" => "[email protected]" }
# Or just: s.author = "Tenfay"
# s.authors = { "Tenfay" => "[email protected]" }
# s.social_media_url = "https://twitter.com/Tenfay"
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.swift_version = '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