-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCelloSDK.podspec
More file actions
15 lines (15 loc) · 966 Bytes
/
CelloSDK.podspec
File metadata and controls
15 lines (15 loc) · 966 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Pod::Spec.new do |spec|
spec.name = "CelloSDK"
spec.version = "0.13.0"
spec.summary = "The Cello iOS SDK, for integrating Cello referral component into your iOS application."
spec.description = "The Cello iOS SDK, for integrating Cello referral component into your iOS application. The SDK supports iOS 15+"
spec.homepage = "https://github.com/getcello/cello-ios"
spec.license = { :type => "Apache 2.0", :file => "LICENSE" }
spec.author = { "Cello Dev" => "developer@cello.so" }
spec.platform = :ios, '15.0'
spec.source = { :http => 'https://github.com/getcello/cello-ios-sp/releases/download/0.13.0/CelloSDK.xcframework.zip' }
spec.preserve_paths = "CelloSDK.xcframework", "dSYM"
spec.vendored_frameworks = 'CelloSDK.xcframework'
spec.requires_arc = true
spec.frameworks = ["UIKit", "Foundation", "WebKit"]
end