-
Notifications
You must be signed in to change notification settings - Fork 371
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release 1.6.5 is missing Module Folder #222
Comments
Same problem here: version 1.6.5 does not work with carthage and causes a "No such module 'TrustKit'" error in Xcode. |
+1 |
I have the same issue trying to update to 1.6.5 version using carthage. I realized that there is an open PR with a fix. I am wondering when the fix will be released? |
+1 |
1 similar comment
+1 |
Released as v1.7.0. |
I'm using Carthage to pull down TrustKit and noticed that in the 1.6.5 release has a different layout of the .framework folder than the 1.6.4 release before it.
I've created a test with 1.6.4 to switch to 1.6.5
github "datatheorem/TrustKit" == 1.6.4
to the Cartfile$(PROJECT_DIR)/Carthage/Build/iOS
to theFRAMEWORK_SEARCH_PATHS
carthage update --platform iOS --new-resolver
import TrustKit
and perform clean build of the project
github "datatheorem/TrustKit" == 1.6.5
carthage update --platform iOS --new-resolver
What happens:
Carthage/Build/iOS/TrustKit.framework
appears as:FRAMEWORK_SEARCH_PATHS
andimport TrustKit
worksAfter step 9:
After step 10:
No such module 'TrustKit'
as the Modules/module.modulemap is missingDetails:
Attachment:
I'm attaching my demo code where I got to step 9 in the reproduction steps: TrustKit_Test_1.6.5.zip
Steps to test
carthage update --platform iOS --new-resolver
(this will download 1.6.5);Question:
Could you please advice how to import TrustKit 1.6.5 without module.modulemap?
I'm happy to provide additional feedback.
Cheers,
Willem
The text was updated successfully, but these errors were encountered: