Wallpaper_Home/wallpaper_project/Podfile
2024-04-17 14:37:20 +08:00

35 lines
832 B
Ruby

# Uncomment the next line to define a global platform for your project
# platform :ios, '11.0'
target 'wallpaper_project' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for wallpaper_project
pod 'SnapKit'
#pod 'AFNetworking'
pod 'SDWebImage'
pod 'IQKeyboardManagerSwift'
pod 'BRPickerView'
pod 'Alamofire'
pod 'FSPagerView'
pod 'SVProgressHUD'
pod 'CYLTabBarController'
pod 'GYSide'
pod 'JXSegmentedView'
pod 'MJExtension'
pod 'MJRefresh'
pod 'FLAnimatedImage'
pod 'lottie-ios'
post_install do |installer|
installer.generated_projects.each do |project|
project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
end
end
end
end
end