加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Podfile 1.83 KB
一键复制 编辑 原始数据 按行查看 历史
Shuaiqi Xue 提交于 2023-04-13 14:17 . Adapts to Xcode 14
source 'https://cdn.cocoapods.org/'
platform :ios, '12.0'
use_frameworks!
use_modular_headers!
inhibit_all_warnings!
install! 'cocoapods',
disable_input_output_paths: true,
generate_multiple_pod_projects: true
target :CKApp do
pod 'MBProgressHUD', '1.2.0'
pod 'AFNetworking', '4.0.1'
pod 'Masonry', '1.1.0'
pod 'NJKWebViewProgress', '0.2.3'
pod 'SFHFKeychainUtils', '1.0.0'
pod 'TTTAttributedLabel', '2.0.0'
pod 'MJRefresh', '3.6.1'
pod 'IQDropDownTextField', '2.0.1'
pod 'IQKeyboardManager', '6.5.6'
pod 'TYCyclePagerView', '1.2.0'
pod 'SDWebImage', '4.4.8'
pod 'FLAnimatedImage'
pod 'SDWebImage/GIF', '4.4.8'
pod 'PPBadgeView', '3.1.0'
pod 'YYModel', '1.0.4'
pod 'YYText', '1.0.7'
pod 'TZImagePickerController', '3.6.0'
pod 'JXCategoryView', '1.5.9'
pod 'FDFullscreenPopGesture', '1.1'
pod 'TZScrollViewPopGesture', '1.0.6'
pod 'KVOController', '1.2.0'
pod 'AliyunOSSiOS', '2.10.9'
pod 'AlipaySDK-iOS', '15.7.9'
pod 'WechatOpenSDK', '1.8.7.1'
pod 'AMapLocation-NO-IDFA', '2.6.8'
pod 'JCore', '2.6.2'
pod 'JVerification', '2.6.4'
pod 'JPush', '3.5.2'
pod 'JShare', '1.9.1'
pod 'UMCCommon', '7.2.9'
pod 'SensorsAnalyticsSDK', '2.6.3', :subspecs => ['DISABLE_UIWEBVIEW']
pod "Shuffle", :path => "./LocalPods/Shuffle/"
pod 'UICKeyChainStore' # 钥匙链.
pod 'NSData+MD5Digest' # MD5 验证.
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['VALID_ARCHS'] = 'armv7 armv7s arm64 x86_64'
end
end
installer.generated_projects.each do |project|
project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
end
end
end
end
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化