-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDYFStoreReceiptVerifier.podspec
49 lines (35 loc) · 1.65 KB
/
DYFStoreReceiptVerifier.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
Pod::Spec.new do |spec|
spec.name = "DYFStoreReceiptVerifier"
spec.version = "1.2.0"
spec.summary = "The verification program of receipts for in app purchases within iOS."
spec.description = <<-DESC
TODU: [ObjC] The verification program of receipts for in app purchases within iOS.
DESC
spec.homepage = "https://github.com/itenfay/DYFStoreReceiptVerifier"
# spec.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "Tenfay" => "[email protected]" }
# Or just: spec.author = "Tenfay"
# spec.authors = { "Tenfay" => "[email protected]" }
# spec.social_media_url = "https://twitter.com/Tenfay"
spec.platform = :ios
# spec.platform = :ios, "5.0"
spec.ios.deployment_target = "7.0"
# spec.osx.deployment_target = "10.10"
# spec.watchos.deployment_target = "3.0"
# spec.tvos.deployment_target = "9.0"
spec.source = { :git => "https://github.com/itenfay/DYFStoreReceiptVerifier.git", :tag => spec.version.to_s }
spec.source_files = "Classes/*.{h,m}"
spec.public_header_files = "Classes/*.h"
# spec.exclude_files = "Classes/Exclude"
# spec.resource = "icon.png"
# spec.resources = "Resources/*.png"
# spec.preserve_paths = "FilesToSave", "MoreFilesToSave"
# spec.framework = "Security"
# spec.frameworks = "SomeFramework", "AnotherFramework"
# 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"
end