forked from tikhop/TPInAppReceipt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTPInAppReceipt.podspec
More file actions
27 lines (18 loc) · 893 Bytes
/
TPInAppReceipt.podspec
File metadata and controls
27 lines (18 loc) · 893 Bytes
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
Pod::Spec.new do |s|
s.name = "TPInAppReceipt"
s.version = "2.2.3"
s.summary = "Decode Apple Store Receipt and make it easy to read and validate it"
s.description = "The library provides transparent way to decode and validate Apple Store Receipt. Pure swift, No OpenSSL!"
s.homepage = "https://github.com/tikhop/TPInAppReceipt"
s.license = "MIT"
s.source = { :git => "https://github.com/tikhop/TPInAppReceipt.git", :tag => "#{s.version}" }
s.author = { "Pavel Tikhonenko" => "hi@tikhop.com" }
s.swift_version = '5.0'
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.10'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
s.requires_arc = true
s.source_files = "TPInAppReceipt/Source/*.{swift}", "TPInAppReceipt/Source/Vendor/CryptoSwift/*.{swift}"
s.resources = "TPInAppReceipt/AppleIncRootCertificate.cer"
end