-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMPComapiFoundation.podspec
More file actions
24 lines (23 loc) · 1.22 KB
/
CMPComapiFoundation.podspec
File metadata and controls
24 lines (23 loc) · 1.22 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
Pod::Spec.new do |s|
s.version = '2.1.1'
s.name = 'CMPComapiFoundation'
s.license = 'MIT'
s.summary = 'Foundation library for connecting to and consuming COMAPI services'
s.description = <<-DESC
# iOS SDK for Comapi
Client to connect your iOS application with [Comapi](http://comapi.com/) services and add it as a channel to our cloud messaging platform. Written in Objective-C.
For more information about the integration please visit [the website](http://docs.comapi.com/reference#one-sdk-ios).
DESC
s.homepage = 'https://github.com/comapi/comapi-sdk-ios-objc'
s.author = { 'Comapi' => 'support@comapi.com' }
s.source = { :git => 'https://github.com/comapi/comapi-sdk-ios-objc.git', :tag => s.version.to_s }
s.ios.deployment_target = '10.0'
s.requires_arc = true
s.source_files = 'Sources/**/*.{h,m}'
s.module_map = 'Sources/Module/CMPComapiFoundation.modulemap'
s.preserve_path = 'Sources/Module/CMPComapiFoundation.modulemap'
s.module_name = s.name
s.resources = []
s.resource_bundles = {'CMPComapiFoundation' => ['PrivacyInfo.xcprivacy']}
s.dependency 'SocketRocket'
end