Open Whirlwind opened 6 years ago
Well, your pod needs to be updated to the lowercase version.
I can't. There is not a lowercase version in my pod repos.
[!] Unable to find a specification for `fmdb` depended upon by `Podfile`
I think it may be Insensitive
in mac osx.
Could you rename the folder from fmdb
to FMDB
or other?
Looks like the problem can be solved with spec.header_dir = 'FMDB'
in podspec.
https://guides.cocoapods.org/syntax/podspec.html#header_dir
Same issue here. I think <FMDB/FMDB.h> is <PodName/FileName.h>, <fmdb/FMDB.h> is <FolderName/FileName.h>. But the case is different so Xcode tries to warn this. It is maybe safe to ignore this warning, but should I?
I have a pod :
I got a warning:
I check every settings, I found the pod path
Pods/Headers/Public/FMDB/FMDB.h -> Pods/FMDB/src/fmdb/FMDB.h
I don't know why the pod search the
Pods/FMDB/src/fmdb/FMDB.h
, notPods/Headers/Public/FMDB/FMDB.h
. I change the folder namePods/FMDB/src/fmdb/FMDB.h -> Pods/FMDB/src/FMDB/FMDB.h
, thefmdb
toFMDB
, then the warning gone.