宽窄优行-由【嘉易行】项目成品而来
younger_times
2023-07-05 0d8f5fc8a516bfd07e425909e4a4432600572ee7
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
# Uncomment the next line to define a global platform for your project
platform :ios, '10.0'
source 'https://github.com/CocoaPods/Specs.git'
target 'OKProject' do
  # Comment the next line if you don't want to use dynamic frameworks
  use_frameworks!
 
  # Pods for OKProject
#网络请求
pod 'Alamofire'
pod 'Moya/RxSwift'
#刷新
pod 'MJRefresh'
#图片加载
pod 'Kingfisher'
pod 'SwiftEntryKit'
#自动布局
pod 'SnapKit'
pod 'RxCocoa'
pod 'RxSwift'
#为我们提供 rx_disposeBag
pod 'NSObject+Rx'
pod 'MBProgressHUD'
pod 'HandyJSON'
pod 'IQKeyboardManager'
pod 'SwiftDate'
#多级界面
pod 'VTMagic'
pod 'DZNEmptyDataSet'
pod 'TTTAttributedLabel'
pod 'SwifterSwift'
#高德
pod 'AMapSearch-NO-IDFA'
pod 'AMapLocation-NO-IDFA'
#已包含3D地图,无需单独引入3D地图
pod 'AMapNavi-NO-IDFA'
pod 'AMapTrack-NO-IDFA'
pod 'RHSocketKit/Extend'
pod 'HCSStarRatingView'
# 分享
#pod 'UMengUShare/Social/ReducedWeChat'
#pod 'UMengUShare/Social/ReducedQQ'
#二维码
pod 'SGQRCode'
pod 'AliyunOSSiOS'
#支付
#pod 'YHICBCPaySDK'
 
pod 'Lantern','1.1.2'    #图片浏览器
 
pod 'QMUIKit','4.3.0'
pod 'TZImagePickerController','3.7.6'
pod 'FFPage', '2.3.0'    #分页
pod 'SPPageMenu','3.5.0'
pod 'UserDefaultsStore','1.5.0'
 
 
#pod 'JCore' # 可选项,也可由pod 'JPush'自动获取
#pod 'JPush' # 必选项
 
post_install do |installer|
  installer.generated_projects.each do |project|
    project.targets.each do |target|
      target.build_configurations.each do |config|
        config.build_settings['CODE_SIGN_IDENTITY'] = ''
        config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
      end
    end
  end
end
end