-
Notifications
You must be signed in to change notification settings - Fork 761
/
Podfile
29 lines (26 loc) · 851 Bytes
/
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
#source 'https://github.com/CocoaPods/Specs.git'
#source 'https://github.com/Artsy/Specs.git'
source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'
source 'https://cdn.cocoapods.org/'
platform :ios, '8.0'
# 引用框架
use_frameworks!
# ignore all warnings from all pods(注解)
inhibit_all_warnings!
target 'PlayerDemo' do
pod 'Masonry'
pod 'GPUImage'
pod 'AFNetworking', '~> 4.0.1'
pod 'FDFullscreenPopGesture'
pod 'MJRefresh'
pod 'SDWebImage'
pod 'TZImagePickerController', '~> 2.1.6'
end
#Xcode里配置:项目名->Target->Build Settings->Enable BitCode中设置为NO就可以了.
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ENABLE_BITCODE'] = 'NO'
end
end
end