You are probably missing the target block for your target in the subfile.
I added the target to my project and forgot to add the target block to the subfile for this purpose, and I had the same error.
(My project) / Pods / Target support files / Pods - (My project) / Pods- (My project) -frameworks.sh: There is no such file or directory
The components of the path are actually named after the target:
(My project) / Subroutines / Target Support Files / Links [target] / Pods- [target] -frameworks.sh
Cocoapods creates configuration files for each goal you specify. Try adding the target entry to your subfile, for example:
target "SOME TARGET" do specify pods here end
If you end up adding a lot of goals, it might be a good idea to define groups of groups that you can easily use inside your target entries. This way you define your groups above your target records, for example:
def commonPods specify pods here end
Then you can use the group name in your entry in the module, instead of copying all the entries in the cell for each target:
target "SOME TARGET" do commonPods end
Adding a target entry to your swap file will cause CocoaPods to create a new set of files the next time you run pod install . However, before you run this command, you may have to configure your configurations to None so that Cocoapods can assign their own configuration. Here's how to do it:
- Go to your goal at the project level.
- For each configuration specified in the Configuration section, select
None for your purpose in the drop-down menu under Based on Configuration File .
These steps will clear the Cocoapods warning that states:
CocoaPods did not set the basic configuration of your project, because your project already has its own set of settings. For CocoaPods integration to work at all ...
After you have edited your signature file and you have canceled your configurations, you are ready to run pod install on the command line. Upon completion of the process, check the basic configuration settings and note that they were configured on the configuration file that CocoaPods created!
I hope this helps!