mobile-ffmpeg-https (4.3.1) POD install failed - ios

I am getting error on my pod install command , Error creating package is mobile-ffmpeg-https (4.3.1). Image attached for more details.
Actually i have not used this package anywhere in my project. I tried to use it and then removed it from project. But i am not getting why this is still showing up in pod install.
i tried deleting my podfile.lock and again running pod install but issue remains.
thanks in advance .

Just try to install it with different wifi or mobile data, and you're done

Related

'Missing Module Map' Error Xcode 11 Cocoapods error after deleting pod folder

I recently started my first Xcode project (I am really new to app development) and I accidentally deleted a pod folder and moved it to the trash when I meant to simply delete the reference. I removed the Pod files from the left side bar out of the "Pods" folder and I was left with a pretty nasty set of errors.
The project no longer builds, I am no longer able to run "pod install" using terminal without getting errors, and I am worried that my project is completely trashed now after an immense amount of work I have put into the application and the pod created workspace. If you have any ideas on what to do, please offer all the help you can as I am terrified that I have corrupted the whole project.
Wanted to send an update for all of those who have a similar issue: I have resolved the issue and everything seems to be working again.
What I did to resolve the errors
I reinstalled Cocoapods using Terminal with the command $ sudo gem install cocoapods
Once it reinstalled, I ran the command pod cache clean --all (This removed all pod cache files)
Next, I ran the command pod deintegrate to remove all pod files
Once all pod files were removed, I ran the command pod install
After completing these steps, all the issues were resolved
I hope this helps someone else who may have similar issues due to improperly removing pod framework and module files or those who's
This article will help detail all the steps for installing Cocoapods for those who may be confused by my explanation to fixing these specific errors:
https://guides.cocoapods.org/using/getting-started.html

something wrong when I install Google-Mobile-Ads-SDK

when I try to add google mobile ads sdk to my file, there comes out some problems.
when i start install:
pic1
there is nothing wrong here, but when i run the app with xcode, i got a lot of error:
pic2
i don't know how to fix that ...... if anyone could help me ? thanks!!!!!!
Open your old project(without Google-Mobile-Ads-SDK framework), I think it was working(compiling & running) properly. Now add Google-Mobile-Ads-SDK pod line in the project's pod file and install pod by --no-repo-update in the terminal.
pod install --no-repo-update

pod update is resulting into error [fatal: unable to access]

After running pod update I am getting this error, I can only think of internet issue but my internet seems working fine. And another thing I noticed it is not happening every time, sometimes it just work fine with the same Pod file and some time result into mentioned error.
fatal: unable to access 'https://github.com/CocoaPods/Specs.git/': transfer closed with outstanding read data remaining
[!] CocoaPods was not able to update the `master` repo. If this is an unexpected issue and persists you can inspect it running `pod repo update --verbose`
its mean the latest pod not updated yet on git , wait 2 or 3 days it will work until you can add .framework file in your project or can use one down version of pod like latest pod is 10.2 so you can use 10.1
Repo updated but git not update. Check this link click.
Reinstalling CocoaPods:
sudo gem install cocoapods
Once it will be finished then write below command:
pod install
If pods were already installed. Otherwise, you will have to update all of them with
pod update
open your terminal go to your project i.e cd your_project_path hit enter and then run this command
pod repo update --verbose
hope this will resolve your issue
for more info check this link it might help you

Getting error while generating iOS build using ionic that is "The sandbox is not in sync with the Podfile.lock." in MAC Mojave

Recently I am getting this "The sandbox is not in sync with the Podfile.lock" issue.
This source codes were running good in previous mac OS, means after Mojave update it build is not running... I have checked and tried to solve by cocapods related issue.
I have checked many similar questions answers but no one is working for me.
Is there any solution at this situation?
as the error say u need to install the pod or update cocoa pods in your project run:
to install cocoapods
sudo gem install cocoapods
pod repo update
and then go to platform/ios and run :
pod install
and if need it remove the ios platform and add it again to 4.5.5 and install the pod again

The file “Pods.xcconfig” couldn’t be opened because there is no such file

How to solve this issue. I have downloaded the iOS project from the Git repo and when I try to build, it gives an error:
Check dependencies
The file “Pods.xcconfig” couldn’t be opened because there is no such file. (/Users/YoGesh/Desktop/Xy-3/Pods/Pods.xcconfig)
PhaseScriptExecution Check\ Pods\ Manifest.lock /Users/YoGesh/Library/Developer/Xcode/DerivedData/Xy-bmwkojrwthnvzdfxthnxeqgesekm/Build/Intermediates/Xy.build/Debug-iphonesimulator/Xy.build/Script-C0451AB63D7F4B73830000BA.sh
cd /Users/YoGesh/Desktop/Xy-3
/bin/sh -c /Users/YoGesh/Library/Developer/Xcode/DerivedData/Xy-bmwkojrwthnvzdfxthnxeqgesekm/Build/Intermediates/Xy.build/Debug-iphonesimulator/Xy.build/Script-C0451AB63D7F4B73830000BA.sh
diff: /../Podfile.lock: No such file or directory
diff: /Manifest.lock: No such file or directory
error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.
I found a good hint inside the issues of CocoaPods on GitHub, try this:
Close your project (better close Xcode completely)
Open the Terminal inside your project and execute pod install
Open your project again. If there are still errors clean your project ( Shift + cmd + K ), after this the errors should be gone.
Restarting Xcode helped me. Pod update and install didn't help.
Go to your project directory from the terminal
run "pod update"
Hey i had this same problem, I was getting the following error when running pod update however i didn’t realise the update wasn’t working.
$ pod update
Analyzing dependencies
/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/pathname.rb:422:in `open': No such file or directory
It was because I forgot to run "pod setup" after installing cocoapods.
I ran pod setup from the terminal, followed it up with pod update (or pod install) and everything went to plan.
Closing Xcode, pod update and pod install didn't help me.
I just ran the install cocoapods command again:
sudo gem install cocoapods
If you see error:
You don't have write permissions for the /usr/bin directory
Use next command:
sudo gem install cocoapods -n /usr/local/bin
You may be using the Xcode default project file. After installing the framework through pod, you must use the generated xcworkspace in the project folder.
Example : SampleProject.xcworkspace.
For those who want to solve this issue and tried to remove the cocoa pods from the project:
1. Open the project, on the left side there must be a folder named Pods
2. Delete the folder and the problem will be solved
!!! Do not do this if you need cocoa pods
I've experience a similar situation, for me, it's an error stop all the pods to be updated when I ran pod update.
Try to resolve the error and run pod update again, clean your project then try to build again.
I Tried pod update command in terminal for the project, it did not fix the issue.
then I Tried pod install command for the same project, it installed all the pod dependencies and the project got indexed and all those type of issues got fixed.

Resources