mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 09:47:37 +00:00
13 lines
405 B
Bash
13 lines
405 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
mkdir build
|
||
|
. ./config.sh
|
||
|
./install_ndk.sh
|
||
|
|
||
|
(cd ../../crypto_plugins/flutter_liblelantus/scripts/android && ./build_all.sh ) &
|
||
|
(cd ../../crypto_plugins/flutter_libepiccash/scripts/android && ./install_ndk.sh && ./build_all.sh ) &
|
||
|
(cd ../../crypto_plugins/flutter_libmonero/scripts/android/ && ./install_ndk.sh && ./build_monero_all.sh && ./copy_monero_deps.sh ) &
|
||
|
|
||
|
wait
|
||
|
echo "Done building"
|