79306990

Date: 2024-12-25 06:29:12
Score: 2
Natty:
Report link

I found the solution of this problem if you getting same problem as me you should add these code lines to your pod file :

 if target.name == 'abseil'
  Pod::UI.puts "Workaround: Configuring abseil to use gnu++14 language standard for cocoapods 1.16+ compatibility".yellow
  Pod::UI.puts "            Remove workaround when upstream issue fixed https://github.com/firebase/firebase-ios-sdk/issues/13996".yellow
  target.build_configurations.each do |config|
    config.build_settings['CLANG_CXX_LANGUAGE_STANDARD'] = 'gnu++14'
  end
end

I found this solution on GitHub you can go there with this link : Github Link

Reasons:
  • Blacklisted phrase (1): this link
  • Whitelisted phrase (-2): I found the solution
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): getting same problem
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Yasin G.