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
I cannot get CocoaPods to install OpenSSL-Universal with the "use_frameworks!" option in my Podfile.
!] The 'Pods' target has transitive dependencies that include static binaries: (Pods/OpenSSL-Universal/lib-ios/libcrypto.a and Pods/OpenSSL-Universal/lib-ios/libssl.a)
Are there any workarounds? I know I can remove the use_frameworks! option, but I need it for other target dependencies using Swift.
Thanks!
The text was updated successfully, but these errors were encountered:
AFAIK you can't mix framework and static library with Cocoapods. The only options for you is to manually integrate the library - I did it like this myself, last time.
What about using this pre_install do |installer| Pod::Installer::Xcode::TargetValidator.send(:define_method, :verify_no_static_framework_transitive_dependencies) {} end
?
I cannot get CocoaPods to install OpenSSL-Universal with the "use_frameworks!" option in my Podfile.
!] The 'Pods' target has transitive dependencies that include static binaries: (Pods/OpenSSL-Universal/lib-ios/libcrypto.a and Pods/OpenSSL-Universal/lib-ios/libssl.a)
Are there any workarounds? I know I can remove the use_frameworks! option, but I need it for other target dependencies using Swift.
Thanks!
The text was updated successfully, but these errors were encountered: