Sjors / libwally-swift

Swift wrapper for LibWally, a collection of useful primitives for cryptocurrency wallets
MIT License
40 stars 18 forks source link

Libwally Pods are not getting installed #55

Closed shantibhatt768 closed 2 years ago

shantibhatt768 commented 2 years ago

I had added below line into podfile

"pod 'LibWally', :git => 'https://github.com/blockchain/LibWally-Swift.git', :tag => 'v0.0.3', :submodules => true"

and when trying to install this using "pod install" command, I am getting below error

Screenshot 2021-12-07 at 11 17 33 AM
Sjors commented 2 years ago

Could you try again with the latest release (0.0.6)? https://github.com/Sjors/libwally-swift/tags

Though I think in this case you're missing build system dependencies, see those in the Build section: https://github.com/Sjors/libwally-swift#build (I should probably copy part of that to the top)

shantibhatt768 commented 2 years ago

@Sjors, After build system dependencies, I am getting now below error

Screenshot 2021-12-07 at 1 30 44 PM
Sjors commented 2 years ago

That's still the old version.

shantibhatt768 commented 2 years ago

Tries 0.0.6 version also, same error occured

Screenshot 2021-12-07 at 2 05 39 PM
shantibhatt768 commented 2 years ago

Finally resolved this issue by using below commands

brew install gnu-sed automake brew install libtool

and then "pod install"

These commands help me to integrate the library successfully