-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
90 lines (75 loc) · 1.92 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
# 忽略所有第三方库警告⚠️
inhibit_all_warnings!
target 'CarConvenient' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for CarConvenient
pod "SnapKit"
pod "Alamofire"
pod "SwiftyJSON"
pod "SVProgressHUD"
pod "CryptoSwift"
pod "ObjectMapper"
pod "WechatOpenSDK"
#4.10.0
pod "Kingfisher"
pod "KingfisherWebP"
# pod "IBAnimatable"
# 导入腾讯SDK
pod "TencentOpenAPI"
pod "IQKeyboardManager"
# 从GitHub指定版本更新库
# pod 'LLCycleScrollView', :git => 'https://github.com/LvJianfeng/LLCycleScrollView.git', :tag => '1.5.0'
# 轮播图
# pod "YJBannerView"
pod "FSPagerView"
# 图片选择器
# pod "HXPhotoPicker", "~> 2.2.3"
# pod "SDWebImage"
# pod "YYCache"
# pod "YYImage"
# pod "YYWebImage"
# 选择器
# pod "BRPickerView"
# 刷新
pod "MJRefresh"
# 二维码生成
# pod "EFQRCode"
# 选项卡:Viewpager
pod 'LTScrollView'
# 下拉菜单
# pod "DropDown"
# 弹框
# pod 'STZPopupView'
# Facebook
# pod 'FBSDKCoreKit'
# pod 'FBSDKLoginKit'
# pod 'FBSDKShareKit'
# pod 'FBSDKPlacesKit'
# pod 'FBSDKMessengerShareKit'
# Google登录
# pod 'GoogleSignIn'
pod "RxSwift"
pod "RxCocoa"
# 极光推送
pod 'JPush'
# 链式添加事件等处理
# pod 'ReactiveCocoa'
pod 'TagListView'
target 'CarConvenientTests' do
inherit! :search_paths
# Pods for testing
end
target 'CarConvenientUITests' do
inherit! :search_paths
# Pods for testing
end
end
post_install do |installer|
installer.pods_project.build_configurations.each do |config|
config.build_settings.delete('CODE_SIGNING_ALLOWED')
config.build_settings.delete('CODE_SIGNING_REQUIRED')
end
end