Fix for batch sending. Add build haven for cakewallet android app.
M committed
Apr 1, 2022 at 13:48 UTC
d4b59d97de5f85af86cc043a278ed78fce7be884
2 files changed
+3
-3
lib/src/screens/send/send_page.dart
+1
-2
@@ -355,8 +355,7 @@ class SendPage extends BasePage {
355
});
356
}
357
358
- if (state is ExecutedSuccessfullyState &&
359
- !sendViewModel.isBatchSending) {
358
+ if (state is ExecutedSuccessfullyState) {
359
WidgetsBinding.instance.addPostFrameCallback((_) {
360
showPopUp<void>(
361
context: context,
scripts/android/build_all.sh
+2
-1
@@ -9,6 +9,7 @@ DIR=$(dirname "$0")
9
10
case $APP_ANDROID_TYPE in
11
"monero.com") $DIR/build_monero_all.sh ;;
12
- "cakewallet") $DIR/build_monero_all.sh ;;
12
+ "cakewallet") $DIR/build_monero_all.sh
13
+ $DIR/build_haven.sh ;;
14
"haven") $DIR/build_haven_all.sh ;;
15
esac