platform :ios, '15.0' use_frameworks! inhibit_all_warnings! #install! 'cocoapods', # :generate_multiple_pod_projects => true, # :incremental_installation => true # source 'https://github.com/byteplus-sdk/byteplus-specs.git' source 'https://cdn.cocoapods.org/' target 'Visual_Novel_iOS' do # Base pod 'Moya' pod 'SnapKit' pod 'R.swift' pod 'Cache' pod 'DateToolsSwift' pod 'SwiftDate' pod 'Kingfisher' pod 'APNGKit', '~> 2.0' # View pod 'ActiveLabel' pod 'JXSegmentedView' pod 'JXPagingView/Paging' pod 'lottie-ios' pod 'TZImagePickerController', :git => 'https://github.com/OfficialEPal/TZImagePickerController.git', :branch => "Crush" pod 'SwipeCellKit' # Helper pod 'SwiftyAttributes' pod 'IQKeyboardManagerSwift' # Util & third pod 'NIMSDK_LITE' pod 'AWSMobileClient' pod 'AWSS3' # pod 'URLNavigator' pod 'BytePlusRTC', '~> 3.58.1' # OC pod 'SDWebImage' pod 'Masonry' pod 'UICKeyChainStore' pod 'MJExtension' pod 'MJRefresh' # Debug pod 'LookinServer', :subspecs => ['Swift'], :configurations => ['Debug'] post_install do |installer| installer.pods_project.targets.each do |target| target.build_configurations.each do |config| config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0' end end end end