cake_wallet/scripts/ios/build_mwebd.sh
2024-07-26 10:24:24 +02:00

14 lines
No EOL
306 B
Bash
Executable file

#!/bin/bash
# install go > 1.21:
brew install go
export PATH=$PATH:~/go/bin
go install golang.org/x/mobile/cmd/gomobile@latest
gomobile init
# build mwebd:
git clone https://github.com/ltcmweb/mwebd
cd mwebd
gomobile bind -target=ios .
mv -fn ./Mwebd.xcframework ../../../ios/
# cleanup:
cd ..
rm -rf mwebd