Newer
Older
LaserMethane / Podfile
# Uncomment the next line to define a global platform for your project
platform :ios, '14.0'

target 'LaserMethane' do
  # Comment the next line if you don't want to use dynamic frameworks
  use_frameworks!

  # 网络请求框架
  pod 'Alamofire', '~> 4.7'
  # RSA加密
  pod 'SwiftyRSA'
  # JSON解析
  pod 'SwiftyJSON', '~> 4.0'
  # 钥匙串,可以存字符串
  pod 'KeychainAccess'
  # 刷新控件
  pod 'MJRefresh', '~> 3.1.14.1'
  # 加载控件
  pod 'MBProgressHUD'
  # 键盘遮挡解决方案
  pod 'IQKeyboardManagerSwift', '~>  6.5.0'
  # Kingfisher 是一个下载、缓存网络图片的轻量级纯swift库
  pod 'Kingfisher'
  # Banner
  pod 'FSPagerView'
  # 高德地图
  pod 'AMap3DMap'
  # 高德定位
  pod 'AMapLocation'
  # 自动约束布局
  pod 'SnapKit'
  # 图片选择器
  pod 'HXPHPicker'
  # 大图查看
  pod 'ZLPhotoBrowser'
  # 伪随机数
  pod 'SwiftRandom'
end

# post_install do |installer|
#   installer.pods_project.build_configurations.each do |config|
#     config.build_settings['VALID_ARCHS'] = 'arm64, arm64e, x86_64'
#   end
# end