Lobster icon indicating copy to clipboard operation
Lobster copied to clipboard

Can't update with Firebase

Open IlyaMakarevich opened this issue 4 years ago • 2 comments

Hello! Will Lobster work with Firebase/CoreOnly (= 7.1.0) ?

IlyaMakarevich avatar Jan 28 '21 18:01 IlyaMakarevich

same issue, please any update?

mohayoub avatar Sep 11 '22 14:09 mohayoub

   post_install do |installer|
       installer.pods_project.targets.each do |target|
           target.build_configurations.each do |config|
              xcconfig_path = config.base_configuration_reference.real_path
              xcconfig = File.read(xcconfig_path)
              new_xcconfig = xcconfig.sub("-framework \"Lobster\"", "")
              File.open(xcconfig_path, "w") { |file| file << xcconfig_mod }
           end
       end
   end

For Xcode 15 users, you will need at least Firebase 10.16.0 to pass the build error problem. So add that code at the end of your Podfile, this should avoid Lobster to use his inferior version of Firebase and use the actual version you have manually added in your project.

xav42mac avatar Oct 18 '23 14:10 xav42mac