mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-03-02 06:50:26 +00:00
15 lines
No EOL
446 B
Bash
Executable file
15 lines
No EOL
446 B
Bash
Executable file
# install go > 1.21:
|
|
wget https://go.dev/dl/go1.22.4.linux-amd64.tar.gz
|
|
sudo rm -rf /usr/local/go && sudo tar -C /usr/local -xzf go1.22.4.linux-amd64.tar.gz
|
|
export PATH=$PATH:/usr/local/go/bin
|
|
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 ./Mwebd.xcframework ../../../ios/
|
|
# cleanup:
|
|
cd ..
|
|
rm -rf mwebd |