skip to Main Content

I dont really understand why this error shown to me. Can anyone help with this?

Regardless of shared_preferences version it always installs shared_preferences_foundation (0.0.1)

after i hit pod install this error was shown to me

2

Answers


  1. I had changed code below than it work, but I don’t know why in ios platform declare using osx?

    example/ios/.symlinks/plugins/shared_preferences_foundation/ios/shared_preferences_foundation.podspec

    comment this line: # s.osx.dependency ‘FlutterMacOS’

    Login or Signup to reply.
  2. You maybe use a private pod source in your podfile

    add this source in your podfile, pod install again

    source 'https://github.com/CocoaPods/Specs.git'
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search