1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- #source 'https://github.com/CocoaPods/Specs.git'
- project 'TSLiveWallpaper.xcodeproj'
- platform :ios, '14.0'
- inhibit_all_warnings!
- target 'TSLiveWallpaper' do
- use_frameworks!
- pod 'ObjectMapper', '4.2'
- pod 'SnapKit'
- pod 'SVProgressHUD'
- pod 'Kingfisher', '7.10.0'
- pod 'TYCyclePagerView'
- pod 'Google-Mobile-Ads-SDK'
- pod 'Alamofire'
-
- pod 'TZImagePickerController'
- pod 'MarqueeLabel'
- pod 'MJRefresh'
- pod 'TSVideoKit', :git => 'https://gitee.com/WanlanNeel/tsvideo-kit.git', :branch => 'feature/mini'
- pod "IJKMediaPlayerKit", :podspec => 'https://github.com/debugly/ijkplayer/releases/download/k0.11.8/IJKMediaPlayerKit.spec.json'
- pod 'KLExtension',:git=>"https://gitee.com/WanlanNeel/klextension.git"
- pod 'KLTips',:git=>"https://gitee.com/WanlanNeel/kltips.git"
- pod 'Localize-Swift', '~> 3.2'
- pod 'BetterSegmentedControl', '~> 2.0'
- pod 'Google-Mobile-Ads-SDK'
- pod 'ADManager', :path => '../TSCoacopods/ADManager'
-
- end
- post_install do |installer|
- installer.pods_project.targets.each do |target|
- target.build_configurations.each do |config|
- config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '14.0'
- # config.build_settings['EXCLUDED_ARCHS[sdk=iphonesimulator*]'] = 'arm64'
- end
- end
- installer.aggregate_targets.each do |target|
- target.xcconfigs.each do |variant, xcconfig|
- xcconfig_path = target.client_root + target.xcconfig_relative_path(variant)
- IO.write(xcconfig_path, IO.read(xcconfig_path).gsub("DT_TOOLCHAIN_DIR", "TOOLCHAIN_DIR"))
- end
- end
- installer.pods_project.targets.each do |target|
- target.build_configurations.each do |config|
- if config.base_configuration_reference.is_a? Xcodeproj::Project::Object::PBXFileReference
- xcconfig_path = config.base_configuration_reference.real_path
- IO.write(xcconfig_path, IO.read(xcconfig_path).gsub("DT_TOOLCHAIN_DIR", "TOOLCHAIN_DIR"))
- end
- end
- end
- end
|