-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathPodFile
More file actions
26 lines (24 loc) · 738 Bytes
/
PodFile
File metadata and controls
26 lines (24 loc) · 738 Bytes
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
# Uncomment this line to define a global platform for your project
platform :ios, '8.0'
# Uncomment this line if you're using Swift
#use_frameworks!
target 'BaseProject' do
pod 'JSPatch'
pod 'Nimbus/Core'
pod 'Nimbus/Collections'
pod 'Nimbus/Models'
pod 'Nimbus/AttributedLabel'
pod 'ReactiveCocoa', '2.5'
pod 'WebViewJavascriptBridge'
pod 'MWPhotoBrowser'
pod 'AsyncDisplayKit'
end
post_install do |installer_representation|
installer_representation.pods_project.targets.each do |target|
if target.name == "Nimbus"
target.build_configurations.each do |config|
config.build_settings['ENABLE_STRICT_OBJC_MSGSEND'] = "NO"
end
end
end
end