fix: try to use single file

pull/1152/head
Prateek Sunal 2 months ago committed by GitHub
parent 3980c95fe0
commit 1a186ee563
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 15
      flutter/flutter/ios/ffmpeg_kit_flutter.podspec

@ -11,12 +11,23 @@ Pod::Spec.new do |s|
s.requires_arc = true
s.static_framework = true
s.source = { :path => '.' }
s.dependency 'Flutter'
s.pod_target_xcconfig = {
'DEFINES_MODULE' => 'YES',
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386'
}
s.dependency 'ffmpeg_kit_vendor', '6.0'
s.source = {
:http => 'https://github.com/FreezeIt/ffmpeg-kit/releases/download/v6.0/ffmpeg-kit-full-gpl-6.0-ios-xcframework.zip'
}
s.vendored_frameworks = [
'ffmpegkit.framework',
'libavcodec.framework',
'libavdevice.framework',
'libavfilter.framework',
'libavformat.framework',
'libavutil.framework',
'libswresample.framework',
'libswscale.framework'
]
end

Loading…
Cancel
Save