mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-06 04:17:42 +00:00
4f97f8fbb4
TODO windows
13 lines
442 B
Bash
Executable file
13 lines
442 B
Bash
Executable file
#!/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/ && ./build_all.sh ) &
|
|
(cd ../../crypto_plugins/tor/scripts/android && ./install_ndk.sh && ./build_all.sh ) &
|
|
|
|
wait
|
|
echo "Done building"
|