mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 20:39:51 +00:00
This commit introduces initial support for the Tari wallet, including new credential handling, transaction history setup, and wallet restoration. It also updates dependencies and adds a mock environment for testing Tari wallet services.
23 lines
559 B
Bash
Executable file
23 lines
559 B
Bash
Executable file
#!/bin/bash
|
|
|
|
MONERO_COM=monero.com
|
|
CAKEWALLET=cakewallet
|
|
HAVEN=haven
|
|
CONFIG_ARGS=""
|
|
|
|
case $APP_ANDROID_TYPE in
|
|
$MONERO_COM)
|
|
CONFIG_ARGS="--monero"
|
|
;;
|
|
$CAKEWALLET)
|
|
CONFIG_ARGS="--monero --bitcoin --ethereum --polygon --nano --bitcoinCash --solana --tron --wownero --zano --decred --tari"
|
|
;;
|
|
esac
|
|
|
|
cd ../..
|
|
cp -rf pubspec_description.yaml pubspec.yaml
|
|
flutter pub get
|
|
dart run tool/generate_pubspec.dart
|
|
flutter pub get
|
|
dart run tool/configure.dart $CONFIG_ARGS
|
|
cd scripts/android
|