-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathQonversion.podspec
More file actions
56 lines (49 loc) · 2.92 KB
/
Qonversion.podspec
File metadata and controls
56 lines (49 loc) · 2.92 KB
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
50
51
52
53
54
55
56
Pod::Spec.new do |s|
excluded_files = ['Sources/NoCodes/**/*.swift']
idfa_exclude_files = ['Sources/Qonversion/IDFA']
s.name = 'Qonversion'
s.swift_version = '5.5'
s.version = '6.11.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.
This SDK also includes No-Codes functionality for building and customizing paywall and onboarding screens without writing code, enabling seamless integration of pre-built subscription UI components.
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 = '13.0'
s.osx.deployment_target = '10.15'
s.tvos.deployment_target = '12.0'
s.watchos.deployment_target = '6.2'
s.visionos.deployment_target = '1.0'
s.ios.frameworks = ['UIKit', 'WebKit']
s.watchos.frameworks = ['WatchKit']
s.visionos.frameworks = ['RealityKit']
s.requires_arc = true
s.resource_bundles = {'Qonversion' => ['Sources/PrivacyInfo.xcprivacy']}
s.pod_target_xcconfig = {
'SWIFT_ACTIVE_COMPILATION_CONDITIONS[sdk=xrsimulator*]' => '$(inherited) VISION_OS',
'SWIFT_ACTIVE_COMPILATION_CONDITIONS[sdk=xros*]' => '$(inherited) VISION_OS',
'DEFINES_MODULE' => 'YES',
}
s.default_subspecs = 'Main'
s.subspec 'Main' do |ss|
ss.source_files = ['Sources/Qonversion/**/*.{h,m}', 'Sources/Swift/**/*.swift', 'Sources/NoCodes/**/*.swift']
ss.osx.exclude_files = excluded_files
ss.tvos.exclude_files = excluded_files
ss.watchos.exclude_files = excluded_files
ss.visionos.exclude_files = excluded_files
end
s.subspec 'NoIdfa' do |sss|
sss.source_files = ['Sources/Qonversion/**/*.{h,m}', 'Sources/Swift/**/*.swift']
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.visionos.exclude_files = excluded_files + idfa_exclude_files
sss.ios.exclude_files = idfa_exclude_files
end
end