Podfile 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'
  2. workspace './bugu.xcworkspace'
  3. project './bugu/bugu.xcodeproj'
  4. platform :ios, '14.0'
  5. use_frameworks!
  6. target 'bugu' do
  7. # SwiftLint - 一个代码静态检查工具,用于保持代码风格一致性
  8. pod 'SwiftLint', '= 0.42.0', configurations: ['Debug']
  9. # R.swift - 一个资源管理工具,提供类型安全的方式访问资源文件
  10. pod 'R.swift', '7.3.2' # https://github.com/mac-cain13/R.swift
  11. # SwiftGen - 一个代码生成工具,用于生成类型安全的资源访问代码
  12. pod "SwiftGen", "6.6.2" # https://github.com/SwiftGen/SwiftGen
  13. # LookinServer - 一个调试工具,用于实时查看和修改界面布局
  14. # pod 'LookinServer', :configurations => ['Debug'] , :inhibit_warnings => true
  15. # GCDWebServer - 一个轻量级的 HTTP 服务器框架,支持本地文件共享和调试
  16. # pod "GCDWebServer", "~> 3.0", :inhibit_warnings => true # https://github.com/swisspol/GCDWebServer
  17. # GCDWebServer/WebUploader - GCDWebServer 的扩展,用于文件上传功能
  18. # pod "GCDWebServer/WebUploader", "~> 3.0" # https://github.com/swisspol/GCDWebServer
  19. # RxSwift - 一个响应式编程框架,简化异步和事件驱动的代码
  20. pod 'RxSwift', '= 6.6.0' #https://github.com/ReactiveX/RxSwift
  21. # RxRelay - RxSwift 的扩展,提供无状态的响应式数据流
  22. pod 'RxRelay', '= 6.6.0' #https://github.com/ReactiveX/RxSwift
  23. # RxCocoa - RxSwift 的扩展,为 Cocoa 提供响应式支持
  24. pod 'RxCocoa', '= 6.6.0' #https://github.com/ReactiveX/RxSwift
  25. # NSObject+Rx - 为 NSObject 提供 RxSwift 的扩展支持
  26. pod 'NSObject+Rx', '= 5.2.2' # https://github.com/RxSwiftCommunity/NSObject-Rx
  27. # RxGesture - 一个基于 RxSwift 的手势处理库
  28. pod 'RxGesture', '= 4.0.4' # https://github.com/RxSwiftCommunity/RxGesture
  29. # 工具类
  30. # SwifterSwift - 一个扩展库,提供了许多实用的 Swift 扩展方法和属性
  31. pod 'SwifterSwift' , '6.2.0'
  32. # DateToolsSwift - 一个日期和时间处理库,提供了便捷的日期计算和格式化功能
  33. pod 'DateToolsSwift', '~> 5.0' # https://github.com/MatthewYork/DateTools
  34. # SwiftDate - 一个强大的日期和时间处理库,支持多时区、日历和格式化
  35. pod 'SwiftDate', '~> 7.0' # https://github.com/malcommac/SwiftDate
  36. # JKCountDownButton - 一个倒计时按钮库,支持自定义样式和事件处理
  37. pod 'JKCountDownButton', '~> 1.3.0', :inhibit_warnings => true # https://github.com/shaojiankui/JKCountDownButton
  38. # SwipeCellKit - 一个支持滑动操作的 UITableView 和 UICollectionView 单元格库
  39. pod 'SwipeCellKit' # https://github.com/SwipeCellKit/SwipeCellKit
  40. # JXSegmentedView - 一个高性能的分段选择控件,支持多种样式和自定义
  41. pod 'JXSegmentedView' , '1.3.0'
  42. # SnapKit - 一个简洁的 Auto Layout DSL,方便进行界面布局
  43. pod 'SnapKit'
  44. # Kingfisher - 一个强大的图片下载和缓存库,支持异步加载图片
  45. pod 'Kingfisher', '= 7.9.1'
  46. # 对象解析
  47. # SwiftyJSON - 用于处理 JSON 数据的库,提供更简洁的 JSON 解析方式
  48. pod 'SwiftyJSON'
  49. # SmartCodable - 一个基于 Codable 的 JSON 解析库,简化对象与 JSON 的转换
  50. pod 'SmartCodable'
  51. # 加密
  52. # CryptoSwift - 一个加密库,支持多种加密算法,如 AES、SHA 等
  53. pod 'CryptoSwift', '~> 1.4.1', :inhibit_warnings => true # https://github.com/krzyzanowskim/CryptoSwift
  54. # KeychainAccess - 一个访问 iOS Keychain 的库,用于安全存储敏感数据
  55. pod 'KeychainAccess', '~> 4.0' # https://github.com/kishikawakatsumi/KeychainAccess
  56. # 刷新
  57. # MJRefresh - 一个功能强大的下拉刷新和上拉加载控件,支持多种样式
  58. pod 'MJRefresh', :inhibit_warnings => true
  59. # 网络请求
  60. # Moya - 一个基于 Alamofire 的网络请求库,提供更高层次的网络抽象
  61. pod 'Moya', '= 15.0.0'
  62. # Moya/RxSwift - Moya 的 RxSwift 扩展,支持响应式编程
  63. pod 'Moya/RxSwift'
  64. # Moya/ReactiveSwift - Moya 的 ReactiveSwift 扩展,支持响应式编程
  65. pod 'Moya/ReactiveSwift'
  66. # IM
  67. # Starscream - 一个 WebSocket 库,用于实现实时通信
  68. pod 'Starscream'
  69. # SwiftProtobuf - 一个用于处理 Protocol Buffers 的库
  70. pod 'SwiftProtobuf', '1.25.1'
  71. # SQLite.swift - 一个轻量级的 SQLite 数据库框架,支持 Swift 风格的 API
  72. pod 'SQLite.swift', '0.15.3'
  73. # ReachabilitySwift - 一个网络状态监测库,用于检测网络连接状态
  74. pod 'ReachabilitySwift' # https://github.com/ashleymills/Reachability.swift
  75. # Permission
  76. # Permission - 一个权限管理库,简化权限请求和处理
  77. pod 'Permission', '3.1.2' # https://github.yuuza.net/delba/Permission
  78. # Permission/Camera - Permission 的扩展,用于请求相机权限
  79. pod 'Permission/Camera'
  80. # Permission/Location - Permission 的扩展,用于请求位置权限
  81. pod 'Permission/Location'
  82. # Permission/Microphone - Permission 的扩展,用于请求麦克风权限
  83. pod 'Permission/Microphone'
  84. # Permission/Notifications - Permission 的扩展,用于请求通知权限
  85. pod 'Permission/Notifications'
  86. # Permission/Photos - Permission 的扩展,用于请求照片权限
  87. pod 'Permission/Photos'
  88. # Permission/MediaLibrary - Permission 的扩展,用于请求媒体库权限
  89. pod 'Permission/MediaLibrary'
  90. # 提示
  91. # SVProgressHUD - 一个简单易用的加载指示器库,支持多种样式和自定义
  92. pod 'SVProgressHUD', '2.3.1', :inhibit_warnings => true # https://github.com/SVProgressHUD/SVProgressHUD
  93. # MBProgressHUD - 一个轻量级的加载指示器库,用于显示加载状态
  94. pod 'MBProgressHUD', '~> 1.2.0', :inhibit_warnings => true # https://github.com/jdg/MBProgressHUD
  95. # 图片选择 & 浏览
  96. # ZLPhotoBrowser - 一个功能强大的图片选择和浏览库,支持多种自定义功能
  97. pod 'ZLPhotoBrowser', '4.6.0.1', :inhibit_warnings => true # https://github.com/longitachi/ZLPhotoBrowser
  98. # Lantern - 一个轻量级的图片浏览库,支持手势操作
  99. pod 'Lantern','1.1.5' #https://github.com/fcbox/Lantern
  100. # Keyboard
  101. # IQKeyboardManagerSwift - 自动管理键盘的显示和隐藏,避免遮挡输入框
  102. pod 'IQKeyboardManagerSwift', '6.5.16' , :inhibit_warnings => true
  103. # pod 'Eureka', '5.5.0', :inhibit_warnings => true # https://github.com/xmartlabs/Eureka
  104. # QKeyboardEmotionView - 一个支持表情键盘的输入框库
  105. pod 'QKeyboardEmotionView', '2.2' , :inhibit_warnings => true
  106. #各种弹框
  107. # Popover - 一个轻量级的弹出框库,支持自定义内容
  108. pod "Popover" # https://github.com/corin8823/Popover
  109. # SwiftEntryKit - 一个强大的弹出框库,支持多种样式和动画
  110. pod 'SwiftEntryKit', '2.0.0' # https://github.com/huri000/SwiftEntryKit
  111. # PanModal - 一个支持底部弹出框的库,提供流畅的交互体验
  112. pod 'PanModal', '1.2.7'
  113. # swiftUI
  114. # SwiftUI-WRNavigationBar - 一个用于自定义 SwiftUI 导航栏的库
  115. pod 'SwiftUI-WRNavigationBar'
  116. # Logging
  117. # FLEX - 一个强大的调试工具,支持实时查看和修改应用的内部状态
  118. # pod 'FLEX', '5.22.10', :configurations => ['Debug'] , :inhibit_warnings => true # https://github.com/Flipboard/FLEX
  119. # Pulse - 一个强大的日志记录和网络请求监控工具,支持本地和远程日志查看
  120. pod 'Pulse', :path => './Frameworks/Pulse' , :inhibit_warnings => true
  121. #友盟
  122. # UMCommon - 友盟的基础库,提供通用功能支持
  123. pod 'UMCommon'
  124. # UMDevice - 友盟的设备信息采集库
  125. pod 'UMDevice'
  126. # UMAPM - 友盟的性能监控库,用于检测应用性能问题
  127. pod 'UMAPM'
  128. # 本地库
  129. # DesignKit - 本地的 UI 设计组件库
  130. pod 'DesignKit', :path => './Frameworks/DesignKit', :inhibit_warnings => false
  131. # FileKit - 一个文件操作库,提供简洁的 API 进行文件管理
  132. pod 'FileKit', :path => './Frameworks/FileKit' # https://github.com/nvzqz/FileKit
  133. # LiveKitPlugin - 本地的直播功能插件库
  134. pod 'LiveKitPlugin', :path => './Frameworks/LiveKitPlugin'
  135. # Tools - 本地的工具库,提供通用工具方法
  136. pod 'Tools', :path => './Frameworks/Tools'
  137. end
  138. target 'ScreenShareExtension' do
  139. platform :ios, '14.0'
  140. workspace './bugu.xcworkspace'
  141. project './bugu/bugu.xcodeproj'
  142. end
  143. post_install do |installer|
  144. installer.pods_project.targets.each do |target|
  145. target.build_configurations.each do |config|
  146. config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET'
  147. config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
  148. end
  149. end
  150. end