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
It seems like GoogleUtilities it's only included inside firebase-messaging-core so when we use firebase-messaging and firebase-dynamic-links we get error: no such module 'GoogleUtilities' because dynamic links is using this module.
For those who had this issue, the workaround is easy, just add it to your Podfile
pod 'GoogleUtilities', '~> 7.5'
The text was updated successfully, but these errors were encountered:
@triniwiz it seems that this workaround only works locally but on CI environments I'm still getting error: no such module 'GoogleUtilities' I guess we need to include this dependency inside the Podfile for Dynamic links
@triniwiz I modified the dynamic link plugin to include the dependency and didn't work, and now that I upgrade my nativescript version to 8.3.0 I'm getting the error locally too when building. did you where able to replicate the issue?
It seems like
GoogleUtilities
it's only included insidefirebase-messaging-core
so when we usefirebase-messaging
andfirebase-dynamic-links
we geterror: no such module 'GoogleUtilities'
because dynamic links is using this module.For those who had this issue, the workaround is easy, just add it to your Podfile
The text was updated successfully, but these errors were encountered: