mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-03-09 10:16:04 +00:00
Disable haven configuration for iOS as default. Add ability to configure cakewallet for iOS with for configuration script. Remove cw_shared configuration for cw_monero.
This commit is contained in:
parent
1c17b69669
commit
112c092bde
2 changed files with 6 additions and 5 deletions
|
@ -28,7 +28,10 @@ case $APP_IOS_TYPE in
|
||||||
CONFIG_ARGS="--monero"
|
CONFIG_ARGS="--monero"
|
||||||
;;
|
;;
|
||||||
$CAKEWALLET)
|
$CAKEWALLET)
|
||||||
CONFIG_ARGS="--monero --bitcoin --haven --ethereum --polygon --nano --bitcoinCash --solana --tron"
|
CONFIG_ARGS="--monero --bitcoin --ethereum --polygon --nano --bitcoinCash --solana --tron"
|
||||||
|
if [ "$CW_WITH_HAVEN" = true ];then
|
||||||
|
CONFIG_ARGS="$CONFIG_ARGS --haven"
|
||||||
|
fi
|
||||||
;;
|
;;
|
||||||
$HAVEN)
|
$HAVEN)
|
||||||
|
|
||||||
|
|
|
@ -1223,7 +1223,7 @@ Future<void> generatePubspec(
|
||||||
var output = cwCore;
|
var output = cwCore;
|
||||||
|
|
||||||
if (hasMonero) {
|
if (hasMonero) {
|
||||||
output += '\n$cwMonero\n$cwSharedExternal';
|
output += '\n$cwMonero';
|
||||||
}
|
}
|
||||||
|
|
||||||
if (hasBitcoin) {
|
if (hasBitcoin) {
|
||||||
|
@ -1258,10 +1258,8 @@ Future<void> generatePubspec(
|
||||||
output += '\n$cwTron';
|
output += '\n$cwTron';
|
||||||
}
|
}
|
||||||
|
|
||||||
if (hasHaven && !hasMonero) {
|
if (hasHaven) {
|
||||||
output += '\n$cwSharedExternal\n$cwHaven';
|
output += '\n$cwSharedExternal\n$cwHaven';
|
||||||
} else if (hasHaven) {
|
|
||||||
output += '\n$cwHaven';
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (hasFlutterSecureStorage) {
|
if (hasFlutterSecureStorage) {
|
||||||
|
|
Loading…
Reference in a new issue