-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDeepOneSDK.podspec
More file actions
36 lines (31 loc) · 1.37 KB
/
DeepOneSDK.podspec
File metadata and controls
36 lines (31 loc) · 1.37 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
Pod::Spec.new do |spec|
spec.name = "DeepOneSDK"
spec.version = "1.1.8"
spec.summary = "DeepOne SDK for iOS - Deep Linking and Attribution"
spec.description = <<-DESC
DeepOne SDK provides comprehensive deep linking and attribution
capabilities for iOS applications. This framework includes link creation,
attribution tracking, and seamless user experience management.
DESC
spec.homepage = "https://github.com/deeponelabs/deepone-ios-sdk"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "DeepOneIO" => "contact@deeponeio.io" }
spec.source = { :git => "https://github.com/deeponelabs/deepone-ios-sdk.git", :tag => "#{spec.version}" }
# Public framework source files
spec.source_files = "DeepOneSDK/**/*.{h,m,swift}"
spec.public_header_files = "DeepOneSDK/**/*.h"
# Dependencies
spec.dependency "DeepOneNetworking", "~> 1.1.8"
# Build settings
spec.frameworks = "Foundation", "UIKit", "Security"
spec.requires_arc = true
spec.swift_version = "5.5"
# Module settings
spec.module_name = "DeepOneSDK"
spec.platform = :ios, '13.0'
spec.pod_target_xcconfig = {
'SUPPORTS_MACCATALYST' => 'YES',
'IPHONEOS_DEPLOYMENT_TARGET' => '13.0',
'MACOSX_DEPLOYMENT_TARGET' => '10.15'
}
end