forked from RevenueCat/purchases-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPurchases.podspec
37 lines (28 loc) · 1.1 KB
/
Purchases.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
Pod::Spec.new do |s|
s.name = "Purchases"
s.version = "2.7.0-SNAPSHOT"
s.summary = "Subscription and in-app-purchase backend service."
s.description = <<-DESC
Save yourself the hastle of implementing a subscriptions backend. Use RevenueCat instead https://www.revenuecat.com/
DESC
s.homepage = "https://www.revenuecat.com/"
s.license = { :type => 'MIT' }
s.author = { "RevenueCat, Inc." => "[email protected]" }
s.source = { :git => "https://github.com/revenuecat/purchases-ios.git", :tag => s.version.to_s }
s.documentation_url = "https://docs.revenuecat.com/"
s.framework = 'StoreKit'
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.12'
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
s.source_files = [
'Purchases/Public/Purchases.h',
'Purchases/*.h',
'Purchases/*.m',
'Purchases/Public/*.h',
'Purchases/Public/*.m',
]
s.public_header_files = [
'Purchases/Public/Purchases.h',
"Purchases/Public/*.h"
]
end