-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathCloudMine.podspec
24 lines (22 loc) · 1.23 KB
/
CloudMine.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
Pod::Spec.new do |s|
s.name = "CloudMine"
s.version = "1.7.16"
s.summary = "The iOS Framework for interacting with CloudMine."
s.homepage = "https://cloudmine.io/docs/#/ios"
s.license = 'MIT'
s.author = { "CloudMine" => "[email protected]" }
s.platform = :ios, '8.0'
s.source = { :git => "https://github.com/cloudmine/CloudMineSDK-iOS.git", :tag => s.version.to_s }
s.source_files = 'ios/ios/src/**/*.{h,m}'
s.exclude_files = 'CMLegacyCacheCleaner.h', 'NSString+UUID.h', 'NSURL+QueryParameterAdditions.h', 'CMObject+Private.h', 'CMObjectClassNameRegistry.h', 'MARTNSObject.{h,m}', 'RT*.{h,m}'
s.frameworks = 'UIKit', 'CoreGraphics', 'MobileCoreServices', 'SystemConfiguration', 'CFNetwork', 'Foundation', 'CoreFoundation', 'CoreLocation', 'Social', 'Accounts'
s.libraries = 'z'
s.requires_arc = true
s.xcconfig = { 'OTHER_LDFLAGS' => '-ObjC' }
s.subspec 'no-arc' do |sna|
sna.requires_arc = false
sna.source_files = 'ios/ios/src/**/MARTNSObject*.{h,m}', 'ios/ios/src/**/RT*.{h,m}'
end
s.dependency 'AFNetworking', '~> 2.6.3'
s.prefix_header_contents = '#import <SystemConfiguration/SystemConfiguration.h>', '#import <MobileCoreServices/MobileCoreServices.h>'
end