Podfile 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. #source 'https://github.com/CocoaPods/Specs.git'
  2. project 'TSLiveWallpaper.xcodeproj'
  3. platform :ios, '14.0'
  4. inhibit_all_warnings!
  5. target 'TSLiveWallpaper' do
  6. use_frameworks!
  7. pod 'ObjectMapper', '4.2'
  8. pod 'SnapKit'
  9. pod 'SVProgressHUD'
  10. pod 'Kingfisher', '7.10.0'
  11. pod 'TYCyclePagerView'
  12. pod 'Alamofire'
  13. pod 'AFNetworking',:git => "https://github.com/xlDon/AFNetworking-PrivacyInfo.git"
  14. pod 'BetterSegmentedControl', '~> 2.0'
  15. pod 'RealmSwift', '~>10'
  16. pod 'TSSmalCoacopods', :path => '../TSSmalCoacopods'
  17. pod "DynamicBlurView"
  18. pod "HXPhotoPicker/Picker" #只有选择器
  19. pod "HXPhotoPicker/Camera/Lite"#不包含定位功能
  20. pod "HXPhotoPicker/Editor" #只有编辑器
  21. pod 'JXSegmentedView'
  22. pod 'IQKeyboardManagerSwift'
  23. end
  24. post_install do |installer|
  25. installer.pods_project.targets.each do |target|
  26. target.build_configurations.each do |config|
  27. config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '14.0'
  28. # config.build_settings['EXCLUDED_ARCHS[sdk=iphonesimulator*]'] = 'arm64'
  29. end
  30. end
  31. installer.aggregate_targets.each do |target|
  32. target.xcconfigs.each do |variant, xcconfig|
  33. xcconfig_path = target.client_root + target.xcconfig_relative_path(variant)
  34. IO.write(xcconfig_path, IO.read(xcconfig_path).gsub("DT_TOOLCHAIN_DIR", "TOOLCHAIN_DIR"))
  35. end
  36. end
  37. installer.pods_project.targets.each do |target|
  38. target.build_configurations.each do |config|
  39. if config.base_configuration_reference.is_a? Xcodeproj::Project::Object::PBXFileReference
  40. xcconfig_path = config.base_configuration_reference.real_path
  41. IO.write(xcconfig_path, IO.read(xcconfig_path).gsub("DT_TOOLCHAIN_DIR", "TOOLCHAIN_DIR"))
  42. end
  43. end
  44. end
  45. end