【问题标题】:How do I specify the flutter-ffmpeg package in iOS Podfile?如何在 iOS Podfile 中指定 flutter-ffmpeg 包?
【发布时间】:2020-12-12 20:32:08
【问题描述】:

基于:this question, 我相信他们改变了 Podfiles 使得这段代码(来自教程):

if name == 'flutter_ffmpeg'
  pod name+'/min-gpl-lts', :path => File.join(symlink, 'ios')
else
  pod name, :path => File.join(symlink, 'ios')

ffmpeg-flutter 文档中的这段代码: "修改默认#Plugin Pods块如下:"

# Prepare symlinks folder. We use symlinks to avoid having Podfile.lock
  # referring to absolute paths on developers' machines.
  system('rm -rf .symlinks')
  system('mkdir -p .symlinks/plugins')
  plugin_pods = parse_KV_file('../.flutter-plugins')
  plugin_pods.each do |name, path|
    symlink = File.join('.symlinks', 'plugins', name)
    File.symlink(path, symlink)
    if name == 'flutter_ffmpeg'
        pod name+'/<package name>', :path => File.join(symlink, 'ios')
    else
        pod name, :path => File.join(symlink, 'ios')
    end
  end

不再工作。这就是我当前的 Podfile 的样子。我要添加什么以便我可以将我的 flutter_ffmpeg 指定为“/min-gpl-lts”。

# Uncomment this line to define a global platform for your project
platform :ios, '9.3'
pod 'Firebase/Auth'
pod 'Firebase/Firestore'
pod 'GoogleSignIn'
#pod 'flutter_ffmpeg/min-gpl-lts' # when i uncomment this line, it says "multiple sources for dependency"

# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
ENV['COCOAPODS_DISABLE_STATS'] = 'true'

project 'Runner', {
  'Debug' => :debug,
  'Profile' => :release,
  'Release' => :release,
}

def flutter_root
  generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__)
  unless File.exist?(generated_xcode_build_settings_path)
    raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first"
  end

  File.foreach(generated_xcode_build_settings_path) do |line|
    matches = line.match(/FLUTTER_ROOT\=(.*)/)
    return matches[1].strip if matches
  end
  raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get"
end

require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root)

flutter_ios_podfile_setup

target 'Runner' do
  use_frameworks!
  use_modular_headers!

  flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
end

post_install do |installer|
  installer.pods_project.targets.each do |target|
    flutter_additional_ios_build_settings(target)
  end
end

我已经尝试过这个 Podfile 并建议将函数“分叉”出来:

# Uncomment this line to define a global platform for your project
platform :ios, '9.3'
pod 'Firebase/Auth'
pod 'Firebase/Firestore'
pod 'GoogleSignIn'

# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
ENV['COCOAPODS_DISABLE_STATS'] = 'true'

project 'Runner', {
  'Debug' => :debug,
  'Profile' => :release,
  'Release' => :release,
}

def flutter_root
  generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__)
  unless File.exist?(generated_xcode_build_settings_path)
    raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first"
  end

  File.foreach(generated_xcode_build_settings_path) do |line|
    matches = line.match(/FLUTTER_ROOT\=(.*)/)
    return matches[1].strip if matches
  end
  raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get"
end

require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root)

flutter_ios_podfile_setup

# Create this "fork" of flutter_install_ios_plugin_pods
def install_plugin_pods(ios_application_path = nil)
  # defined_in_file is set by CocoaPods and is a Pathname to the Podfile.
   ios_application_path ||= File.dirname(defined_in_file.realpath) if self.respond_to?(:defined_in_file)
   raise 'Could not find iOS application path' unless ios_application_path
 
   # Prepare symlinks folder. We use symlinks to avoid having Podfile.lock
   # referring to absolute paths on developers' machines.
 
   symlink_dir = File.expand_path('.symlinks', ios_application_path)
   system('rm', '-rf', symlink_dir) # Avoid the complication of dependencies like FileUtils.
 
   symlink_plugins_dir = File.expand_path('plugins', symlink_dir)
   system('mkdir', '-p', symlink_plugins_dir)
 
   plugins_file = File.join(ios_application_path, '..', '.flutter-plugins')
   plugin_pods = flutter_parse_plugins_file(plugins_file)
   plugin_pods.each do |name, path|
     symlink = File.join(symlink_plugins_dir, name)
     File.symlink(path, symlink)
 
     # Changes relative to flutter_ffmpeg
     if name == 'flutter_ffmpeg'
         pod name+'/min-gpl-lts', :path => File.join('.symlinks', 'plugins', name, 'ios')
     else
         pod name, :path => File.join('.symlinks', 'plugins', name, 'ios')
     end
   end
 end

target 'Runner' do
  use_frameworks!
  use_modular_headers!

  # flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
  # this function ^ is specified as follows
  # def flutter_install_all_ios_pods(ios_application_path = nil)
  #   flutter_install_ios_engine_pod(ios_application_path)
  #   flutter_install_ios_plugin_pods(ios_application_path)
  # end

  # use this subcall to do the first half of the above^ function
  flutter_install_ios_engine_pod File.dirname(File.realpath(__FILE__))

  # use our "fork" to install the plug in pods (exactly the same as
  # the original function but with ffmpeg package specified)
  install_plugin_pods(File.realpath(__FILE__))
end

post_install do |installer|
  installer.pods_project.targets.each do |target|
    flutter_additional_ios_build_settings(target)
  end
end

但这在 Xcode 的 GeneratedPluginRegistrant.m 中给我一个错误:Module 'apple_sign_in'not found. 所以我认为 Podfile 不工作。

我也试过这个,我将File.dirname(File.realpath(__FILE__)) 传递给函数install_plugin_pods

# Uncomment this line to define a global platform for your project
platform :ios, '9.3'
pod 'Firebase/Auth'
pod 'Firebase/Firestore'
pod 'GoogleSignIn'

# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
ENV['COCOAPODS_DISABLE_STATS'] = 'true'

project 'Runner', {
  'Debug' => :debug,
  'Profile' => :release,
  'Release' => :release,
}

def flutter_root
  generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__)
  unless File.exist?(generated_xcode_build_settings_path)
    raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first"
  end

  File.foreach(generated_xcode_build_settings_path) do |line|
    matches = line.match(/FLUTTER_ROOT\=(.*)/)
    return matches[1].strip if matches
  end
  raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get"
end

require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root)

flutter_ios_podfile_setup

# Create this "fork" of flutter_install_ios_plugin_pods
def install_plugin_pods(ios_application_path = nil)
  # defined_in_file is set by CocoaPods and is a Pathname to the Podfile.
   ios_application_path ||= File.dirname(defined_in_file.realpath) if self.respond_to?(:defined_in_file)
   raise 'Could not find iOS application path' unless ios_application_path
 
   # Prepare symlinks folder. We use symlinks to avoid having Podfile.lock
   # referring to absolute paths on developers' machines.
 
   symlink_dir = File.expand_path('.symlinks', ios_application_path)
   system('rm', '-rf', symlink_dir) # Avoid the complication of dependencies like FileUtils.
 
   symlink_plugins_dir = File.expand_path('plugins', symlink_dir)
   system('mkdir', '-p', symlink_plugins_dir)
 
   plugins_file = File.join(ios_application_path, '..', '.flutter-plugins')
   plugin_pods = flutter_parse_plugins_file(plugins_file)
   plugin_pods.each do |name, path|
     symlink = File.join(symlink_plugins_dir, name)
     File.symlink(path, symlink)
 
     # Changes relative to flutter_ffmpeg
     if name == 'flutter_ffmpeg'
         pod name+'/min-gpl-lts', :path => File.join('.symlinks', 'plugins', name, 'ios')
     else
         pod name, :path => File.join('.symlinks', 'plugins', name, 'ios')
     end
   end
 end

target 'Runner' do
  use_frameworks!
  use_modular_headers!

  # flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
  # this function ^ is specified as follows
  # def flutter_install_all_ios_pods(ios_application_path = nil)
  #   flutter_install_ios_engine_pod(ios_application_path)
  #   flutter_install_ios_plugin_pods(ios_application_path)
  # end

  # use this subcall to do the first half of the above^ function
  flutter_install_ios_engine_pod File.dirname(File.realpath(__FILE__))

  # use our "fork" to install the plug in pods (exactly the same as
  # the original function but with ffmpeg package specified)
  install_plugin_pods File.dirname(File.realpath(__FILE__))
end

post_install do |installer|
  installer.pods_project.targets.each do |target|
    flutter_additional_ios_build_settings(target)
  end
end

但是,这给了我一个Error running pod install. 我在两次构建之间运行flutter clean

【问题讨论】:

    标签: ios flutter ffmpeg flutter-dependencies podfile


    【解决方案1】:
    1. 将以下方法添加到新的Podfile 中,并将&lt;package name&gt; 替换为flutter_ffmpeg 包名称。
    def flutter_install_ios_plugin_pods(ios_application_path = nil)
      # defined_in_file is set by CocoaPods and is a Pathname to the Podfile.
      ios_application_path ||= File.dirname(defined_in_file.realpath) if self.respond_to?(:defined_in_file)
      raise 'Could not find iOS application path' unless ios_application_path
    
      # Prepare symlinks folder. We use symlinks to avoid having Podfile.lock
      # referring to absolute paths on developers' machines.
    
      symlink_dir = File.expand_path('.symlinks', ios_application_path)
      system('rm', '-rf', symlink_dir) # Avoid the complication of dependencies like FileUtils.
    
      symlink_plugins_dir = File.expand_path('plugins', symlink_dir)
      system('mkdir', '-p', symlink_plugins_dir)
    
      plugins_file = File.join(ios_application_path, '..', '.flutter-plugins-dependencies')
      plugin_pods = flutter_parse_plugins_file(plugins_file)
      plugin_pods.each do |plugin_hash|
        plugin_name = plugin_hash['name']
        plugin_path = plugin_hash['path']
        if (plugin_name && plugin_path)
          symlink = File.join(symlink_plugins_dir, plugin_name)
          File.symlink(plugin_path, symlink)
    
          if plugin_name == 'flutter_ffmpeg'
              pod 'flutter_ffmpeg/<package name>', :path => File.join('.symlinks', 'plugins', plugin_name, 'ios')
          else
              pod plugin_name, :path => File.join('.symlinks', 'plugins', plugin_name, 'ios')
          end
        end
      end
    end
    
    1. 确保Runner 目标调用flutter_install_all_ios_pods
    target 'Runner' do
      flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
    end
    

    【讨论】:

    • 巨大。此外,要让它构建发布版本 (flutter build ios),请确保您进入 Xcode 中的 Runner.xcworkspace 并将目标版本设置为 9.3 或更高版本(无论出于何种原因,pubspec 目标版本都不会影响我的 Xcode 版本) .
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2015-12-25
    • 2019-03-20
    • 2021-12-09
    • 1970-01-01
    • 2019-01-07
    • 1970-01-01
    相关资源
    最近更新 更多