mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-22 03:29:36 +00:00
505ea26533
* update flutter to 3.24.3 * bump flutter to 3.24.4, fix all android issues (i hope) * update uni_links path * update sensitive_clipboard * update dependencies * update fast_scanner * update the ref * Update how_to_add_new_wallet_type.md [skip ci] * Update how_to_add_new_wallet_type.md [skip ci] * Update how_to_add_new_wallet_type.md [skip ci] * Update how_to_add_new_wallet_type.md [skip ci] --------- Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com>
18 lines
1.1 KiB
Bash
Executable file
18 lines
1.1 KiB
Bash
Executable file
#!/bin/bash
|
|
set -x -e
|
|
|
|
cd cw_core; flutter pub get; dart run build_runner build --delete-conflicting-outputs; cd ..
|
|
cd cw_evm; flutter pub get; dart run build_runner build --delete-conflicting-outputs; cd ..
|
|
cd cw_monero; flutter pub get; dart run build_runner build --delete-conflicting-outputs; cd ..
|
|
cd cw_bitcoin; flutter pub get; dart run build_runner build --delete-conflicting-outputs; cd ..
|
|
cd cw_haven; flutter pub get; dart run build_runner build --delete-conflicting-outputs; cd ..
|
|
cd cw_nano; flutter pub get; dart run build_runner build --delete-conflicting-outputs; cd ..
|
|
cd cw_bitcoin_cash; flutter pub get; dart run build_runner build --delete-conflicting-outputs; cd ..
|
|
cd cw_solana; flutter pub get; dart run build_runner build --delete-conflicting-outputs; cd ..
|
|
cd cw_tron; flutter pub get; dart run build_runner build --delete-conflicting-outputs; cd ..
|
|
cd cw_wownero; flutter pub get; dart run build_runner build --delete-conflicting-outputs; cd ..
|
|
cd cw_polygon; flutter pub get; cd ..
|
|
cd cw_ethereum; flutter pub get; cd ..
|
|
cd cw_mweb && flutter pub get && cd ..
|
|
dart run build_runner build --delete-conflicting-outputs
|
|
|