-
Notifications
You must be signed in to change notification settings - Fork 10
/
Podfile
153 lines (121 loc) · 3.51 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
# Uncomment the next line to define a global platform for your project
source 'https://github.com/CocoaPods/Specs.git'
install!'cocoapods', :deterministic_uuids => false
platform :ios, '13.0'
use_frameworks!
def common_pods
pod 'AFNetworking'
# pod 'AImage'
pod 'Alamofire', '~> 5.4.1'
# pod 'AlamofireImage'
pod 'RxAlamofire'
# pod 'Aspects'
# pod 'BSImagePicker'
# pod 'BluetoothKit'
# pod 'CryptoSwift'
# pod 'EZSwiftExtensions'
# pod 'FoldingCell'
pod 'IQKeyboardManagerSwift'
# pod 'ImagePicker'
# pod 'KeychainAccess'
pod 'Kingfisher'
pod 'SDWebImage'
pod 'MBProgressHUD'
pod 'MMPopupView'
pod 'MJRefresh'
# pod 'UICircularProgressRing'
# pod 'MonkeyKing'
# pod 'Permission'
# pod 'PromiseKit'
# pod 'ReachabilitySwift'
# pod 'SQLite.swift'
pod 'SnapKit'
pod 'SnapKitExtend'
# pod 'Spring'
# pod 'Surge'
# pod 'SwiftOCR'
# pod 'SwiftString'
# pod 'SwiftyJSON'
# pod 'SwiftyUserDefaults'
pod 'SwiftExpand'
# pod 'TZStackView'
# pod 'Whisper'
# pod 'RealmSwift'
# pod 'RxAlamofire'
# pod 'RxBlocking'
pod 'RxCocoa'
pod 'RxSwift'
# pod 'RxWebKit'
pod 'OHHTTPStubs'
pod 'Starscream'
pod 'HandyJSON'
pod 'Then'
#骨架屏
# pod 'SkeletonView'
#banner图
# pod 'FSPagerView'
# pod 'YYWebImage'
pod 'YYCache'
pod 'YYCategories'
pod 'YYModel'
# pod 'TextFieldEffects'
# pod 'KeychainAccess'
# pod 'SwiftOCR'
# pod "Koloda" #探探主页效果
# pod 'KeychainSwift'
pod 'NNPlateKeyboard'
pod 'NNPopoverButton'
pod 'HFNavigationController'
pod 'NNExcelView'
# pod 'swiftScan'
# pod 'YBAttributeTextTapAction'
# pod 'AAInfographics', :git => 'https://github.com/AAChartModel/AAChartKit-Swift.git'
#iOS自带悬浮窗调试工具,摇晃手机即可显示系统的UI调试界面。
# pod 'UIDebuggingTool'
pod 'EAIntroView'
pod 'XHLaunchAd'
pod 'Instructions'
pod 'TZImagePickerController'
pod 'FloatingPanel'
# pod 'ContainerController'
# pod 'XLPagerTabStrip'
# pod 'MarqueeLabel'
# pod 'NotificationBannerSwift'
pod 'EFQRCode'
pod 'AlipaySDK-iOS'
pod 'WechatOpenSDK', '~> 1.8.6'
# pod 'WechatOpenSDK-XCFramework'
pod "IGListKit"
# pod 'UMCCommon'
# pod 'mob_sharesdk/ShareSDKUI'
# pod 'mob_sharesdk/ShareSDKPlatforms/WeChat'
# pod 'mob_sharesdk/ShareSDKPlatforms/SinaWeibo'
# pod 'mob_sharesdk/ShareSDKPlatforms/AliPaySocial'
# pod 'mob_sharesdk/ShareSDKExtension'
# :configurations => ['Debug'] 只是在xcode debug 时才会加入;
pod 'Reveal-SDK', :configurations => ['Debug']
# pod 'BXKAdvertSDK'
#SwiftUI 辅助库
# pod 'SwiftUIX'
# pod "Introspect"
end
target 'SwiftTemplet' do
common_pods
end
post_install do |installer|
installer.pods_project.targets.each do |target|
if target.name == 'TUICore'
target.build_configurations.each do |config|
config.build_settings['GENERATE_INFOPLIST_FILE'] = 'NO'
end
end
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '5.5';
config.build_settings["CODE_SIGNING_ALLOWED"] = false;
# config.build_settings['VALID_ARCHS'] = 'arm64 arm64e ×86_64'
# config.build_settings['VALID_ARCHS[sdk=iphonesimulator*]'] = '×86_64'
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = "13.O"
config.build_settings['EXCLUDED_ARCHS[sdk=iphonesimulator*]'] = 'arm64'
end
end
end