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
When building for MacOS I get error: ambiguous use of 'register(with:)' and this is because the GeneratedPluginRegistrant.swift file contains 2 lines to register a plugin with the same name: SharedPreferencesPlugin
The name of this plugin should be different than the one from shared_preferences so that they can be both included when building for Mac.
The text was updated successfully, but these errors were encountered:
I have the same issue. I suspect it's because native_shared_preferences depends on shared_preferences_macos while the shared_preferences package depends on the new unified shared_preferences_foundation which is for both MacOS and iOS. The generated plugin registrant then tries to register both.
When building for MacOS I get
error: ambiguous use of 'register(with:)'
and this is because the GeneratedPluginRegistrant.swift file contains 2 lines to register a plugin with the same name: SharedPreferencesPluginThe name of this plugin should be different than the one from shared_preferences so that they can be both included when building for Mac.
The text was updated successfully, but these errors were encountered: