-
Notifications
You must be signed in to change notification settings - Fork 0
/
Qonversion.podspec
39 lines (36 loc) · 2.14 KB
/
Qonversion.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
Pod::Spec.new do |s|
excluded_files = ['Sources/Qonversion/Automations', 'Sources/Qonversion/Public/QONAutomations*.{h,m}', 'Sources/Qonversion/Public/QONActionResult.{h,m}']
idfa_exclude_files = ['Sources/Qonversion/IDFA']
s.name = 'Qonversion'
s.version = '2.21.0'
s.summary = 'qonversion.io'
s.description = <<-DESC
Deep Analytics for iOS Subscriptions
Qonversion is the data platform to power in-app subscription revenue growth. Qonversion allows fast in-app subscriptions implementation. It provides the back-end infrastructure to validate user receipts and manage cross-platform user access to paid content on your app, so you do not need to build your own server. Qonversion also provides comprehensive subscription analytics and out-of-the-box integrations with the leading marketing, attribution, and product analytics platforms.
DESC
s.homepage = 'https://github.com/qonversion/qonversion-ios-sdk'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Qonversion Inc.' => 'hi@qonversion.io' }
s.source = { :git => 'https://github.com/qonversion/qonversion-ios-sdk.git', :tag => s.version.to_s }
s.framework = 'StoreKit'
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.12'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '6.2'
s.ios.frameworks = ['UIKit', 'WebKit']
s.requires_arc = true
s.default_subspecs = 'Main'
s.subspec 'Main' do |ss|
ss.source_files = 'Sources/Qonversion/**/*.{h,m}'
ss.osx.exclude_files = excluded_files
ss.tvos.exclude_files = excluded_files
ss.watchos.exclude_files = excluded_files
end
s.subspec 'NoIdfa' do |sss|
sss.source_files = 'Sources/Qonversion/**/*.{h,m}'
sss.osx.exclude_files = excluded_files + idfa_exclude_files
sss.tvos.exclude_files = excluded_files + idfa_exclude_files
sss.watchos.exclude_files = excluded_files + idfa_exclude_files
sss.ios.exclude_files = idfa_exclude_files
end
end