Down icon indicating copy to clipboard operation
Down copied to clipboard

error: Unable to find module dependency: 'libcmark'

Open jaygajjar-huma opened this issue 6 months ago • 10 comments

Please help prevent duplicate issues before submitting a new one:

  • [x] I've searched other open/closed issues for duplicates before opening up this new issue.

Report

What did you do?

I am getting below error for xcode26 via cocoapods error: Unable to find module dependency: 'libcmark'

jaygajjar-huma avatar Sep 29 '25 16:09 jaygajjar-huma

I definitely haven't tried opening this in xcode26 yet (haven't tried on any of my apps for that matter lol). Soooo if you figure out before I can take a look please update this issue. I imagine other apps will have the same error as there's nothing overly special about this one.

itsthisjustin avatar Sep 29 '25 16:09 itsthisjustin

I also encountered this problem, please solve it as soon as possible @itsthisjustin

MilkFoam-L avatar Sep 30 '25 02:09 MilkFoam-L

same error +1

0xBa0 avatar Sep 30 '25 06:09 0xBa0

same error +1. It would be great if we could get this working on Xcode 26

carloscuba avatar Oct 03 '25 18:10 carloscuba

same error +1. It would be great if we could get this working on Xcode 26

Best11111111111 avatar Oct 08 '25 03:10 Best11111111111

A temporary workaround is to set Explicitly Built Modules in Build Settings to No.

Image

leson1106 avatar Oct 21 '25 09:10 leson1106

same error +1

ricardosvale avatar Nov 03 '25 15:11 ricardosvale

same error +1, only set Explicitly Built Modules to No not work for me. The Down pod is depended by a remote pod.

lishanyu777 avatar Nov 06 '25 04:11 lishanyu777

same error +1

Cooper-Han avatar Nov 10 '25 06:11 Cooper-Han

Same error +1.

Initially setting Explicitly Built Modules to No did not resolve my problem, so I had to also remove -ld_classic from the Other Linker Flags too.

MauricioChavesDias avatar Nov 18 '25 03:11 MauricioChavesDias

It's fixed in https://github.com/johnxnguyen/Down/pull/312

vvorlov avatar Dec 26 '25 13:12 vvorlov

same error +1, Has anyone solved the problem?

Roobt avatar Feb 27 '26 05:02 Roobt

Hey there, @Roobt . We were able to solve the problem by just updating our Podfile:

pod 'Down',
      git: 'https://github.com/vvorlov/Down.git'

This forked repo contains all the required changes.

carloscuba avatar Feb 27 '26 05:02 carloscuba

Hello,@carloscuba I also tried this method and cleaned up the entire project, but still reported 'Unable to find module dependency:' libcmark '

Roobt avatar Feb 27 '26 05:02 Roobt

This is exactly what we did, @Roobt :

  • Updated the Down pod reference (as mentioned on my previous comment)
  • Upgraded from Cococapods 1.13.0 to 1.16.2 (not sure if this is required, but we did it anyway)
  • Deintegrated the Pods: pod deintegrate + removed Podfile.lock (so we are ready for a "fresh install")
  • Installed the Pods again: pod install

None of the other methods/alternatives worked for us, so make sure you don't have anything else on your Podfile (post_install directives) or any other mentioned Build Settings.

carloscuba avatar Feb 27 '26 05:02 carloscuba

This is exactly what we did, @Roobt :

  • Updated the Down pod reference (as mentioned on my previous comment)
  • Upgraded from Cococapods 1.13.0 to 1.16.2 (not sure if this is required, but we did it anyway)
  • Deintegrated the Pods: pod deintegrate + removed Podfile.lock (so we are ready for a "fresh install")
  • Installed the Pods again: pod install

None of the other methods/alternatives worked for us, so make sure you don't have anything else on your Podfile (post_install directives) or any other mentioned Build Settings.

I just tried all these steps once and still haven't solved my problem.

Roobt avatar Feb 27 '26 06:02 Roobt