-
Notifications
You must be signed in to change notification settings - Fork 17
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
Xcode 12.5 compile issues with cocoapods #7
Comments
Having this issue as well |
Seems to be because the Torus-utils dependency is dependent on Torus-fetchNodeDetails which is dependent on web3swift which is dependant on CryptoSwift version 1.0.0, an older version of CryptoSwift thats causing these errors in Xcode 12.5+ |
Hi @SaleemFlatCircle, one workaround now is to go to your Flutter project target 'Runner' do
use_frameworks!
use_modular_headers!
# Add this line
pod 'web3swift', :git => 'https://github.com/lvyikai/web3swift.git', :branch => 'develop'
flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
end Let me know if it works for you. |
I can confirm the above workaround does work |
Thanks @SaleemFlatCircle, if it is resolved, please close the issue 🙏🏻 |
@phuctm97 he has only proposed a workaround, it doesn’t fix the issue for everyone else. Also I was the one that opened the issue. The dependencies of this library need to be updated to fix the issue permanently |
Hi,
I'm trying to integrate this pod into an app using cocoapods and i'm getting complication errors from an outdated version of CryptoSwift. And a warning that there is "No rule to process" one of the bundled json files for arm64 arch.
CryptoSwift is aware of the build errors issue and fixed it, seems you are using one that is out of date: https://github.com/krzyzanowskim/CryptoSwift/issues/870
The text was updated successfully, but these errors were encountered: