Home > database >  No podspec found for `flutter_user_agentx` in `.symlinks/plugins/flutter_user_agentx/ios`, while run
No podspec found for `flutter_user_agentx` in `.symlinks/plugins/flutter_user_agentx/ios`, while run

Time:01-14

I am trying to run my flutter application in ios, while pod install i am getting error ([!] No podspec found for flutter_user_agentx in .symlinks/plugins/flutter_user_agentx/ios). I am using dependency named "flutter_user_agentx", On android is working fine, Few days back it was working fine for ios also but today i am getting this error.

I want to run my flutter application on ios.

CodePudding user response:

This usually happens when you add a new package and there are no pods for ios for that package. However, you will get a lot of pods problem, but mostly following these steps will solve them:

  • run flutter clean
  • Delete the following files in the ios folder: Podfile and Podfile.lock and the folder Pods
  • run flutter pub get
  • go to the 'ios' folder using cd ios
  • run pod install --repo-update (to install the pods again, and if u face any problem try without --repo-update)
  • Run your app, from command line using 'flutter run' which will take a little bit longer

CodePudding user response:

It seems that package is broken in iOS.It's a fork of the original repo. Not the official one.

Use the below package instead.

https://pub.dev/packages/fk_user_agent

GitHub issue link

  • Related