-
Notifications
You must be signed in to change notification settings - Fork 1
/
Podfile
22 lines (21 loc) · 859 Bytes
/
Podfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
use_frameworks!
platform :ios, '9.0'
target 'BeginChat' do
# pod 'MOBFoundation_IDFA'
pod 'SMSSDK'
pod 'SnapKit', :git => 'https://github.com/SnapKit/SnapKit.git', :branch => 'swift-4'
pod 'AVOSCloudIM'
pod 'Alamofire', :git => 'https://github.com/Alamofire/Alamofire.git', :branch => 'swift4'
# IQKeyboardManager.swift 不支持swift4 ,暂时用OC版本替换
pod 'IQKeyboardManager'
pod 'Kingfisher', :git => 'https://github.com/onevcat/Kingfisher.git', :branch => 'swift4'
pod 'MBProgressHUD'
pod 'SQLite.swift', :git => 'https://github.com/stephencelis/SQLite.swift.git', :branch => 'swift-4'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '4.0'
end
end
end