-
Hi, I have an issue with Firebase messaging When I want to archive my ipa I have the issue: warning: Multiple targets match implicit dependency for linker flags My Pod file is as below: What is wrong? How can I fix it?
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Ok I fix it. I added pod 'GoogleUtilities' in both target in my pod file as below target 'Runner' do flutter_install_all_ios_pods File.dirname(File.realpath(FILE)) target 'ImageNotification' do |
Beta Was this translation helpful? Give feedback.
-
I had a similar issue; my relevant podfile parts looked like this:
Respectively, changed
|
Beta Was this translation helpful? Give feedback.
Ok I fix it.
I added pod 'GoogleUtilities' in both target in my pod file as below
target 'Runner' do
use_frameworks!
use_modular_headers!
flutter_install_all_ios_pods File.dirname(File.realpath(FILE))
pod 'GoogleUtilities'
end
target 'ImageNotification' do
use_frameworks!
pod 'Firebase/Messaging'
pod 'GoogleUtilities'
end