DEV Community

Khoa Pham
Khoa Pham

Posted on

2 1

How to fix MethodError - undefined method `real_path` with CocoaPods

abc

I'm using cocoapods 1.6.0.beta.2 in a React Native apps and it has been working fine. The pods that I need is Firebase and FacebookSDK. Today after pod install, I got error



NoMethodError - undefined method {% raw %}`real_path' for nil:NilClass
```
I then tried running `pod deintegrate` to start from scratch, but that command fails as well.

My next try is with `cocoapods 1.6.0` and `cocoapods 1.6.1` but the problem still persists.

`undefined method` in Ruby means that we are calling a method on an object that is nil. I like to track down problems via reading code, but this error is very vague.

Looking thorough at the log, I see CocoaPods has done fetching dependencies, but fails at the integration step, so it must be something wrong with my project file.

Then I trace back commits to `project.pbxproj` to see if there's anything wrong. It turns out that there was a commit that accidentally removes `Pods-MyApp Staging.release.xcconfig` from project. That also comes with removal of

```
baseConfigurationReference = B7FC69316CC27F11022F8A82 /* Pods-MyApp Staging.release.xcconfig */;
```
## CocoaPods uses xcconfig
As you know, CocoaPods uses `xcconfig` files to declare pod related information like `FRAMEWORK_SEARCH_PATHS`, `OTHER_LDFLAGS` and other variables like

```
PODS_BUILD_DIR = ${BUILD_DIR}
PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
PODS_PODFILE_DIR_PATH = ${SRCROOT}/.
PODS_ROOT = ${SRCROOT}/Pods
```
And for a normal `pod install`, CocoaPods adds some `xcconfig` files to your project, and the path is `Pods/Target Support Files/Pods-DeepDiffDemo`. There will always be `debug.xcconfig` and `release.xcconfig` for each of your project target.

<img alt="xcconfig" width="1678" src="https://user-images.githubusercontent.com/2284279/53345363-0dcac600-3915-11e9-975f-e6a7207912d0.png">

If your project MyApp has a production target called `MyApp Production` and `MyApp Staging`, then you should have these files

```
Pods-MyApp Staging.debug.xcconfig
Pods-MyApp Staging.release.xcconfig
Pods-MyApp Production.debug.xcconfig
Pods-MyApp Production.release.xcconfig
```
These are added to projects but not checked to any targets. Just like plist, you don't need to add xcconfig files to target.

If you go to project Info page, you will see that these xcconfig files are selected

<img alt="project" width="824" src="https://user-images.githubusercontent.com/2284279/53345592-93e70c80-3915-11e9-9826-3d1b9f30b900.png">

## Missing xcconfig
In my case, `Pods-MyApp Staging.release.xcconfig` was somehow missing from project, hence all pod commands fail.

The fix is to re-add that file and select that xcconfig in project Info page

Original post https://github.com/onmyway133/blog/issues/170
Enter fullscreen mode Exit fullscreen mode

Image of Timescale

Timescale – the developer's data platform for modern apps, built on PostgreSQL

Timescale Cloud is PostgreSQL optimized for speed, scale, and performance. Over 3 million IoT, AI, crypto, and dev tool apps are powered by Timescale. Try it free today! No credit card required.

Try free

Top comments (0)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

👋 Kindness is contagious

Immerse yourself in a wealth of knowledge with this piece, supported by the inclusive DEV Community—every developer, no matter where they are in their journey, is invited to contribute to our collective wisdom.

A simple “thank you” goes a long way—express your gratitude below in the comments!

Gathering insights enriches our journey on DEV and fortifies our community ties. Did you find this article valuable? Taking a moment to thank the author can have a significant impact.

Okay