forked from cloudmine/CloudMineSDK-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCloudMine.podspec
More file actions
21 lines (19 loc) · 1.07 KB
/
CloudMine.podspec
File metadata and controls
21 lines (19 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "CloudMine"
s.version = "1.7.6"
s.summary = "The iOS Framework for interacting with the CloudMine platform."
s.homepage = "https://cloudmine.me/docs/#/ios"
s.license = 'MIT'
s.author = { "CloudMine" => "support@cloudmine.me" }
s.platform = :ios, '6.0'
s.source = { :git => "https://github.com/cloudmine/cloudmine-ios.git", :tag => "v#{s.version}" }
s.source_files = 'ios/ios/src/**/*.{h,m}'
s.exclude_files = 'NSString+UUID.h', 'NSURL+QueryParameterAdditions.h', 'CMObject+Private.h', 'CMObjectClassNameRegistry.h'
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.dependency 'AFNetworking', '~> 2.5.3'
s.dependency 'MAObjCRuntime', '~> 0.0.1'
s.prefix_header_contents = '#import <SystemConfiguration/SystemConfiguration.h>', '#import <MobileCoreServices/MobileCoreServices.h>'
end