-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathPodfile
56 lines (48 loc) · 1.34 KB
/
Podfile
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
platform :ios, ‘9.0’
use_frameworks!
inhibit_all_warnings!
def facebook
pod 'FBSDKCoreKit', '4.24.0'
pod 'FBSDKLoginKit', '4.24.0'
pod 'FBSDKShareKit', '4.24.0'
end
abstract_target 'Group' do
pod 'Alamofire', '4.5.0'
pod 'SwiftLint', '0.20.1'
pod 'SnapKit', '3.2.0'
pod 'SlideMenuControllerSwift', '3.0'
pod 'TwitterKit', '2.8.0'
pod 'GoogleSignIn', '4.0.2'
pod 'SDWebImage', '4.0.0'
pod 'SwiftGen', '4.2.1'
pod 'Sourcery', '0.7.2'
pod 'UITextView+Placeholder', '1.2.0'
pod 'SKPhotoBrowser', '4.0.1'
pod 'MBProgressHUD', '1.0'
pod 'TTTAttributedLabel', '2.0'
pod 'HockeySDK', '~> 5.0.0', :subspecs => ['AllFeaturesLib']
pod 'BMACollectionBatchUpdates', '~> 1.1'
facebook
target 'EmbeddedSocial-Example' do
end
target 'EmbeddedSocial' do
target 'EmbeddedSocialTests' do
inherit! :search_paths
pod 'Quick'
pod 'Nimble'
end
end
target 'EmbeddedSocialUITests' do
pod 'Embassy', ‘4.0’
pod 'EnvoyAmbassador', ‘4.0’
end
end
post_install do |installer|
installer.pods_project.targets.each do |target|
if target.name == 'Embassy' || target.name == 'EnvoyAmbassador'
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = ‘4.0’
end
end
end
end