Lobster
Lobster copied to clipboard
Can't update with Firebase
Hello! Will Lobster work with Firebase/CoreOnly (= 7.1.0) ?
same issue, please any update?
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.