fixed the player issues

This commit is contained in:
2024-07-17 20:05:39 +05:30
parent 850593c0c8
commit aadd946ffa
6 changed files with 70 additions and 71 deletions

View File

@@ -1,5 +1,5 @@
# Uncomment the next line to define a global platform for your project
platform :ios, '13.0'
platform :ios, '14.0'
target 'WOKA' do
# Comment the next line if you don't want to use dynamic frameworks
@@ -17,14 +17,14 @@ target 'WOKA' do
pod 'SDWebImage' , '~> 5.19.4'
#JwPlayer
# pod 'JWPlayerKit', '>= 4.0.0'
pod 'JWPlayerKit', '~> 4.19.2'
# 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['IPHONEOS_DEPLOYMENT_TARGET'] = '14.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)