forked from RevenueCat/purchases-ios
-
Notifications
You must be signed in to change notification settings - Fork 1
/
RevenueCat.podspec
35 lines (28 loc) · 1.36 KB
/
RevenueCat.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
Pod::Spec.new do |s|
s.name = "RevenueCat"
s.version = "4.42.0-SNAPSHOT"
s.summary = "Subscription and in-app-purchase backend service."
s.description = <<-DESC
Save yourself the hassle 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." => "support@revenuecat.com" }
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.swift_version = '5.7'
s.ios.deployment_target = '11.0'
s.watchos.deployment_target = '6.2'
s.tvos.deployment_target = '11.0'
s.osx.deployment_target = '10.13'
s.visionos.deployment_target = '1.0'
s.pod_target_xcconfig = {
'DEFINES_MODULE' => 'YES',
'SWIFT_ACTIVE_COMPILATION_CONDITIONS[sdk=xros*]' => '$(inherited) VISION_OS',
'SWIFT_ACTIVE_COMPILATION_CONDITIONS[sdk=xrsimulator*]' => '$(inherited) VISION_OS',
}
s.source_files = 'Sources/**/*.swift'
s.exclude_files = 'Sources/LocalReceiptParsing/ReceiptParser-only-files/**'
s.resource_bundles = {'RevenueCat' => ['Sources/PrivacyInfo.xcprivacy']}
end