Как объединить Post Install в Podfile в React Native? - PullRequest
1 голос
/ 05 мая 2020

Мне нужно добавить следующую пост-установку в подфайл.

post_install do |pi|
  pi.pods_project.targets.each do |t|
    t.build_configurations.each do |config|
      config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '9.0'
    end
  end
end

Но возникла эта ошибка.

[!] Invalid `Podfile` file: [!] Specifying multiple `post_install` hooks is unsupported..

В подфайле есть две пост-установки. Как их объединить, чтобы устранить ошибку?

post_install do |installer|
    flipper_post_install(installer)
  end
end

post_install do |pi|
  pi.pods_project.targets.each do |t|
    t.build_configurations.each do |config|
      config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '9.0'
    end
  end
end
...