-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathBMSCore.podspec
27 lines (19 loc) · 1.09 KB
/
BMSCore.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
25
26
27
Pod::Spec.new do |s|
s.name = 'BMSCore'
s.version = '2.6.0'
s.summary = 'The core component of the Swift client SDK for IBM Bluemix Mobile Services'
s.homepage = 'https://github.com/ibm-bluemix-mobile-services/bms-clientsdk-swift-core'
s.documentation_url = 'https://ibm-bluemix-mobile-services.github.io/API-docs/client-SDK/BMSCore/Swift/index.html'
s.license = 'Apache License, Version 2.0'
s.authors = { 'IBM Bluemix Services Mobile SDK' => 'mobilsdk@us.ibm.com' }
s.source = { :git => 'https://github.com/ibm-bluemix-mobile-services/bms-clientsdk-swift-core.git', :tag => s.version }
s.source_files = 'Source/**/*'
s.exclude_files = 'Source/Resources/*.plist'
s.ios.exclude_files = 'Source/**/*watchOS*.swift'
s.watchos.exclude_files = 'Source/**/*iOS*.swift', 'Source/Network Requests/NetworkMonitor.swift'
s.ios.deployment_target = '8.0'
s.watchos.deployment_target = '2.0'
s.module_map = 'Source/Resources/module.modulemap'
s.dependency 'BMSAnalyticsAPI', '~> 2.3'
s.requires_arc = true
end