Podfile 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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 'TZImagePickerController'
  14. pod 'MarqueeLabel'
  15. pod 'MJRefresh'
  16. pod 'TSVideoKit', :git => 'https://gitee.com/WanlanNeel/tsvideo-kit.git', :branch => 'feature/local'
  17. pod "IJKMediaFramework", :podspec => 'https://github.com/debugly/ijkplayer/releases/download/k0.8.9/IJKMediaFramework.spec.json'
  18. pod 'KLExtension',:git=>"https://gitee.com/WanlanNeel/klextension.git"
  19. pod 'KLTips',:git=>"https://gitee.com/WanlanNeel/kltips.git"
  20. pod 'Localize-Swift', '~> 3.2'
  21. pod 'BetterSegmentedControl', '~> 2.0'
  22. pod 'AFNetworking',:git => "https://github.com/xlDon/AFNetworking-PrivacyInfo.git"
  23. pod 'RealmSwift', '~>10'
  24. pod 'TSSmalCoacopods', :path => '../TSSmalCoacopods'
  25. pod "DynamicBlurView"
  26. pod 'TYCyclePagerView'
  27. end
  28. post_install do |installer|
  29. installer.pods_project.targets.each do |target|
  30. target.build_configurations.each do |config|
  31. config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '14.0'
  32. # config.build_settings['EXCLUDED_ARCHS[sdk=iphonesimulator*]'] = 'arm64'
  33. end
  34. end
  35. installer.aggregate_targets.each do |target|
  36. target.xcconfigs.each do |variant, xcconfig|
  37. xcconfig_path = target.client_root + target.xcconfig_relative_path(variant)
  38. IO.write(xcconfig_path, IO.read(xcconfig_path).gsub("DT_TOOLCHAIN_DIR", "TOOLCHAIN_DIR"))
  39. end
  40. end
  41. installer.pods_project.targets.each do |target|
  42. target.build_configurations.each do |config|
  43. if config.base_configuration_reference.is_a? Xcodeproj::Project::Object::PBXFileReference
  44. xcconfig_path = config.base_configuration_reference.real_path
  45. IO.write(xcconfig_path, IO.read(xcconfig_path).gsub("DT_TOOLCHAIN_DIR", "TOOLCHAIN_DIR"))
  46. end
  47. end
  48. end
  49. end