2024-05-02 13:20:40 +05:30
|
|
|
# Uncomment the next line to define a global platform for your project
|
|
|
|
|
platform :ios, '13.0'
|
|
|
|
|
|
|
|
|
|
target 'WOKA' do
|
|
|
|
|
# Comment the next line if you don't want to use dynamic frameworks
|
|
|
|
|
use_frameworks!
|
|
|
|
|
|
|
|
|
|
pod 'IQKeyboardManagerSwift', '~> 7.0.2'
|
2024-05-07 11:14:02 +05:30
|
|
|
|
|
|
|
|
# GIF Animations
|
2024-05-10 20:43:57 +05:30
|
|
|
pod 'lottie-ios', '~> 4.4.1'
|
2024-05-02 19:30:09 +05:30
|
|
|
|
2024-05-07 11:14:02 +05:30
|
|
|
#Network call
|
2024-05-10 20:43:57 +05:30
|
|
|
pod 'Alamofire' , '~> 5.9.1'
|
2024-05-07 19:33:29 +05:30
|
|
|
|
2024-05-10 20:43:57 +05:30
|
|
|
# Image Loading & Caching
|
2024-07-11 20:31:25 +05:30
|
|
|
pod 'SDWebImage' , '~> 5.19.4'
|
2024-05-08 19:36:20 +05:30
|
|
|
|
2024-05-30 19:49:41 +05:30
|
|
|
#JwPlayer
|
2024-06-03 20:02:39 +05:30
|
|
|
# pod 'JWPlayerKit', '>= 4.0.0'
|
2024-05-30 19:49:41 +05:30
|
|
|
|
2024-05-02 13:20:40 +05:30
|
|
|
# Bottom line is for removing IPHONEOS_DEPLOYMENT_TARGET
|
|
|
|
|
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'] = '13.0'
|
|
|
|
|
config.build_settings['CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER'] = 'NO'
|
|
|
|
|
xcconfig_path = config.base_configuration_reference.real_path
|
|
|
|
|
xcconfig = File.read(xcconfig_path)
|
|
|
|
|
xcconfig_mod = xcconfig.gsub(/DT_TOOLCHAIN_DIR/, "TOOLCHAIN_DIR")
|
|
|
|
|
File.open(xcconfig_path, "w") { |file| file << xcconfig_mod }
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|