This repository has been archived by the owner on Mar 15, 2024. It is now read-only.
forked from BLVudu/cpe-manifest-ios-experience
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CPEExperience.podspec
33 lines (27 loc) · 1.6 KB
/
CPEExperience.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
28
29
30
31
32
33
Pod::Spec.new do |s|
s.name = 'CPEExperience'
s.version = '4.2.2'
s.summary = 'iOS User Experience for Cross-Platform Extras'
s.license = { :type => 'Apache License, Version 2.0', :file => 'LICENSE' }
s.homepage = 'https://github.com/warnerbros/cpe-manifest-ios-experience'
s.authors = { 'Imran Saadi' => 'imran.saadi@warnerbros.com',
'Alec Ananian' => 'alec.ananian@warnerbros.com'
}
s.platform = :ios, '8.0'
s.dependency 'CPEData', '~> 3.0'
s.dependency 'google-cast-sdk', '~> 3.0'
s.dependency 'MBProgressHUD', '~> 0.9'
s.dependency 'SDWebImage', '~> 4.0'
s.dependency 'UAProgressView', '~> 0.1'
s.dependency 'ReachabilitySwift', '~> 3.0'
s.source = { :git => 'https://github.com/warnerbros/cpe-manifest-ios-experience.git', :tag => s.version.to_s }
s.source_files = 'Source/**/*.swift', 'Source/*.swift'
s.resource_bundles = {
'CPEExperience' => ['Source/**/*.{xcassets,storyboard,strings,xib,ttf}']
}
# GoogleMaps
s.vendored_frameworks = 'Frameworks/*.framework'
s.frameworks = 'Accelerate', 'AVFoundation', 'CoreBluetooth', 'CoreData', 'CoreLocation', 'CoreText', 'GLKit', 'ImageIO', 'OpenGLES', 'QuartzCore', 'Security', 'SystemConfiguration', 'CoreGraphics'
s.libraries = 'icucore', 'c++', 'z'
s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => File.join(File.dirname(__FILE__), 'Frameworks') }
end