You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Attempting to build SDWebImageWebPCode with Carthage using the --use-xcframeworks flag results in a build failure. The following error is observed in the log:
...SDImageWebPCoder.h:12:9: fatal error: module 'SDWebImage' not found
@import SDWebImage;
~~~~~~~^~~~~~~~~~
1 error generated.
The issue appears to be caused by incomplete FRAMEWORK_SEARCH_PATHS for SDWebImageWebPCoder. Presently, this build setting includes the platform-specific build folder (e.g. $(PROJECT_DIR)/Carthage/Build/iOS) but does not include the root build folder ($(PROJECT_DIR)/Carthage/Build), which is where XCFrameworks are located.
The text was updated successfully, but these errors were encountered:
Looks great. If Carthage's XCFramework adoptation does not cost too much of maintainess issues, I can update all SDWebImage related components together.
Attempting to build SDWebImageWebPCode with Carthage using the
--use-xcframeworks
flag results in a build failure. The following error is observed in the log:The issue appears to be caused by incomplete
FRAMEWORK_SEARCH_PATHS
for SDWebImageWebPCoder. Presently, this build setting includes the platform-specific build folder (e.g.$(PROJECT_DIR)/Carthage/Build/iOS
) but does not include the root build folder ($(PROJECT_DIR)/Carthage/Build
), which is where XCFrameworks are located.The text was updated successfully, but these errors were encountered: