mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-05-10 18:42:15 +00:00
* add libmd to linked libraries * ios 16 fixes, new moneroc, simulator support * update app version [skip ci] * update monero.com as well [skip ci] * migrate away from {Monero,Wownero,Zano}Wallet.framework Generate .xcframework dynamically Fix mweb requiring manual steps in xcode * fix app_config.sh when .dylib are not yet present * fix typo in model_generator.sh --------- Co-authored-by: OmarHatem <omarh.ismail1@gmail.com>
24 lines
701 B
Bash
Executable file
24 lines
701 B
Bash
Executable file
#!/bin/bash
|
|
set -x -e
|
|
|
|
for cwcoin in cw_{core,evm,monero,bitcoin,haven,nano,bitcoin_cash,solana,tron,wownero,zano}
|
|
do
|
|
if [[ "x$1" == "xasync" ]];
|
|
then
|
|
bash -c "cd $cwcoin; flutter pub get; dart run build_runner build --delete-conflicting-outputs; cd .." &
|
|
else
|
|
bash -c "cd $cwcoin; flutter pub get; dart run build_runner build --delete-conflicting-outputs; cd .."
|
|
fi
|
|
done
|
|
for cwcoin in cw_{polygon,ethereum,mweb};
|
|
do
|
|
if [[ "x$1" == "xasync" ]];
|
|
then
|
|
bash -c "cd $cwcoin; flutter pub get; cd .." &
|
|
else
|
|
bash -c "cd $cwcoin; flutter pub get; cd .."
|
|
fi
|
|
done
|
|
|
|
flutter pub get
|
|
dart run build_runner build --delete-conflicting-outputs
|