Newer
Older
LaserMethane / Podfile
Pengxh on 2 Sep 2021 1 KB 修改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 'MJRefresh', '~> 3.7.2'
  # 加载控件
  pod 'MBProgressHUD'
  # 键盘遮挡解决方案
  pod 'IQKeyboardManagerSwift', '~>  6.5.0'
  # Kingfisher 是一个下载、缓存网络图片的轻量级纯swift库
  pod 'Kingfisher'
  # Banner
  pod 'FSPagerView'
  # 高德地图
  pod 'AMap3DMap'
  # 高德定位
  pod 'AMapLocation'
  # 自动约束布局
  pod 'SnapKit'
  # 图片选择器
  pod 'HXPHPicker', '~> 1.1.9'
  # 大图查看
  pod 'ZLPhotoBrowser'
  # 伪随机数
  pod 'SwiftRandom'
  # Model转JSON
  pod 'HandyJSON', '~> 5.0.2'
  # Toast提示
  pod 'Toast-Swift', '~> 5.0.1'
  # 本地数据库
  pod 'RealmSwift', '10.12.0'
  # 本地对象存储,类似sp
  pod 'DefaultsKit'
  # 16进制颜色转换
  pod 'Hue'
end

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