You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
Hello!
Will Lobster work with Firebase/CoreOnly (= 7.1.0) ?
The text was updated successfully, but these errors were encountered: