| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'
- workspace './bugu.xcworkspace'
- project './bugu/bugu.xcodeproj'
- platform :ios, '14.0'
- use_frameworks!
- target 'bugu' do
-
- pod 'SwiftLint', '= 0.42.0', configurations: ['Debug']
- pod 'R.swift', '7.3.2' # https://github.com/mac-cain13/R.swift
- pod "SwiftGen", "6.6.2" # https://github.com/SwiftGen/SwiftGen
- # pod 'LookinServer', :configurations => ['Debug'] , :inhibit_warnings => true
- # pod "GCDWebServer", "~> 3.0", :inhibit_warnings => true # https://github.com/swisspol/GCDWebServer
- # pod "GCDWebServer/WebUploader", "~> 3.0" # https://github.com/swisspol/GCDWebServer
-
- pod 'RxSwift', '= 6.6.0' #https://github.com/ReactiveX/RxSwift
- pod 'RxRelay', '= 6.6.0' #https://github.com/ReactiveX/RxSwift
- pod 'RxCocoa', '= 6.6.0' #https://github.com/ReactiveX/RxSwift
- pod 'NSObject+Rx', '= 5.2.2' # https://github.com/RxSwiftCommunity/NSObject-Rx
- pod 'RxGesture', '= 4.0.4' # https://github.com/RxSwiftCommunity/RxGesture
-
- # 工具类
- pod 'SwifterSwift' , '6.2.0'
- pod 'DateToolsSwift', '~> 5.0' # https://github.com/MatthewYork/DateTools
- pod 'SwiftDate', '~> 7.0' # https://github.com/malcommac/SwiftDate
- pod 'JKCountDownButton', '~> 1.3.0', :inhibit_warnings => true # https://github.com/shaojiankui/JKCountDownButton
- pod 'SwipeCellKit' # https://github.com/SwipeCellKit/SwipeCellKit
- pod 'JXSegmentedView' , '1.3.0'
- pod 'SnapKit'
- pod 'Kingfisher', '= 7.9.1'
-
- # 对象解析
- pod 'SwiftyJSON'
- pod 'SmartCodable'
-
- # 加密
- pod 'CryptoSwift', '~> 1.4.1', :inhibit_warnings => true # https://github.com/krzyzanowskim/CryptoSwift
- pod 'KeychainAccess', '~> 4.0' # https://github.com/kishikawakatsumi/KeychainAccess
-
- # 刷新
- pod 'MJRefresh', :inhibit_warnings => true
-
- # 网络请求
- pod 'Moya', '= 15.0.0'
- pod 'Moya/RxSwift'
- pod 'Moya/ReactiveSwift'
- # IM
- pod 'Starscream'
- pod 'SwiftProtobuf', '1.25.1'
- pod 'SQLite.swift', '0.15.3'
- pod 'ReachabilitySwift' # https://github.com/ashleymills/Reachability.swift
-
- # Permission
- pod 'Permission', '3.1.2' # https://github.yuuza.net/delba/Permission
- pod 'Permission/Camera'
- pod 'Permission/Location'
- pod 'Permission/Microphone'
- pod 'Permission/Notifications'
- pod 'Permission/Photos'
- pod 'Permission/MediaLibrary'
-
- # 提示
- pod 'SVProgressHUD', '2.3.1', :inhibit_warnings => true # https://github.com/SVProgressHUD/SVProgressHUD
- pod 'MBProgressHUD', '~> 1.2.0', :inhibit_warnings => true # https://github.com/jdg/MBProgressHUD
-
- # 图片选择 & 浏览
- pod 'ZLPhotoBrowser', '4.5.6', :inhibit_warnings => true # https://github.com/longitachi/ZLPhotoBrowser
- pod 'Lantern','1.1.5' #https://github.com/fcbox/Lantern
- # Keyboard
- pod 'IQKeyboardManagerSwift', '6.5.16' , :inhibit_warnings => true
- # pod 'Eureka', '5.5.0', :inhibit_warnings => true # https://github.com/xmartlabs/Eureka
- pod 'QKeyboardEmotionView', '2.2' , :inhibit_warnings => true
-
- #各种弹框
- pod "Popover" # https://github.com/corin8823/Popover
- pod 'SwiftEntryKit', '2.0.0' # https://github.com/huri000/SwiftEntryKit
- pod 'PanModal', '1.2.7'
- # swiftUI
- pod 'SwiftUI-WRNavigationBar'
-
- # Logging
- # pod 'FLEX', '5.22.10', :configurations => ['Debug'] , :inhibit_warnings => true # https://github.com/Flipboard/FLEX
- pod 'Pulse', :path => './Frameworks/Pulse' , :inhibit_warnings => true
-
- #友盟
- pod 'UMCommon'
- pod 'UMDevice'
- pod 'UMAPM'
-
- # 本地库
- pod 'DesignKit', :path => './Frameworks/DesignKit', :inhibit_warnings => false
- pod 'FileKit', :path => './Frameworks/FileKit' # https://github.com/nvzqz/FileKit
- pod 'LiveKitPlugin', :path => './Frameworks/LiveKitPlugin'
- pod 'Tools', :path => './Frameworks/Tools'
-
- end
- target 'ScreenShareExtension' do
- platform :ios, '14.0'
- workspace './bugu.xcworkspace'
- project './bugu/bugu.xcodeproj'
- end
- post_install do |installer|
- installer.pods_project.targets.each do |target|
- target.build_configurations.each do |config|
- config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET'
- config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
- end
- end
- end
|