Can't Find Pods.Modulemap - Looking in Wrong Directory

Can't find Pods.modulemap - looking in wrong directory

The solution that worked for me was:

First step:
(this step may no longer be needed in Xcode 9.x and newer)

  1. Open Xcode
  2. Click Window (Menu Bar)
  3. Click Projects
  4. Remove all projects (e.g. use backspace)
  5. Close Xcode

Second Step:

  1. Open a terminal app
  2. cd ~/Library/Developer/Xcode/DerivedData
  3. rm -rf Build/* see below if you have a customized build location
  4. rm -rf ModuleCache/*
  5. Close a terminal app

Third Step:

  1. Open Xcode
  2. Product > Clean
  3. Product > Run

Source: https://stackoverflow.com/a/30752152/756976

If you have defined a custom build location:

  1. Go with Finder or the Terminal to the location of the build files. The location for these files is defined in Xcode. To check where these files are:

    • Open Xcode
    • Go to Settings -> Locations -> Derived Data
  2. Go to that location and delete the Build folder

Edit: June 9, 2016

It is also possible that this resolves your problem:

By default the clean of Xcode, does not delete everything, by going to Product, pressing the ALT-key, the Clean-button will change to Clean Build Folder....

Q: Dependency Analysis Error after swift2 convert to swift3

Later, I learned that, IQKeyboardManager in swift3 has changed its name to IQKeyboardManagerSwift in its version 4.0.7:

the solution is in the podfile, add :

pod 'IQKeyboardManager', '~>  4.0.6'
pod 'IQKeyboardManagerSwift', '~> 4.0.7'

and install pods, will solve the issue.

iOS App CocoaPod Blues: Podfile not pulling in Frameworks any more

I rebooted my Mac and reran the pod install and XCode build for the App and it worked just fine..

So in this situation a simple reboot helps.

Add import to module_map or umbrella header

By the way, I found the solution! /p>

I created the custom umbrella headerMyPod/Sources/MyPod-umbrella.h.

And added imports of pods which I want to be available with import MyPod:

@import MyAnotherPod;

Then I created the custom modulemapMyPod/MyPod.modulemap:

framework module MyPod {
umbrella header "MyPod-umbrella.h"
export *
}

And finally in ./MyPod.podspec:

# Add MyPod-umbrella.h to sources
s.source_files = "#{s.name}/Sources/**/*.{swift,h}"

# Select custom module map
s.module_map = "#{s.name}/#{s.name}.modulemap"

After these changes I just can write:

import MyPod
// And it also imports MyAnotherPod like
// import MyAnotherPod

Pod install GPUImage does not work

it's my bad, i got the solution:

You then need to add a new Copy Files build phase, set the Destination
to Frameworks, and add the GPUImage.framework build product to that.
This will allow the framework to be bundled with your application
(otherwise, you'll see cryptic "dyld: Library not loaded:
@rpath/GPUImage.framework/GPUImage" errors on execution).



Related Topics



Leave a reply



Submit