Skip to content

Commit

Permalink
Merge pull request #38 from aliascash/develop_android
Browse files Browse the repository at this point in the history
Android app bugfix release
  • Loading branch information
HLXEasy authored Sep 23, 2021
2 parents 9a6c527 + fc24af5 commit 6b129fc
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 7 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build-featurebranch-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
push:
branches:
- android_*
- android/*

jobs:
# ==========================================================================
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build-featurebranch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
- 'master'
- 'develop'
- '*android*'
- 'android/*'

jobs:
# ==========================================================================
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ project(Alias
)

# ANDROID_VERSION_CODE must be increased with every PlayStore release!
set(ANDROID_VERSION_CODE 17)
set(ANDROID_VERSION_CODE 18)
set(ANDROID_SDK_VERSION 29)

message(STATUS "")
Expand Down
2 changes: 1 addition & 1 deletion Docker/Android/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# SPDX-License-Identifier: MIT

### At first perform source build ###
FROM aliascash/alias-wallet-builder-android:1.2 as build
FROM aliascash/alias-wallet-builder-android:1.3 as build
MAINTAINER HLXEasy <[email protected]>

# Build parameters
Expand Down
2 changes: 1 addition & 1 deletion Docker/Android/Dockerfile_noUpload
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# SPDX-License-Identifier: MIT

### At first perform source build ###
FROM aliascash/alias-wallet-builder-android:1.2
FROM aliascash/alias-wallet-builder-android:1.3
MAINTAINER HLXEasy <[email protected]>

# Build parameters
Expand Down
5 changes: 5 additions & 0 deletions ReleaseNotes_Android.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ SPDX-License-Identifier: MIT
This releasenotes document covers only the Android relevant changes. For full
releasenotes please head over to [the latest release on Github](https://github.com/aliascash/alias-wallet/releases/latest).

#### 4.4.1.18 Android (released 2021-09-21)
- Fixed UI flaw on transaction list
- Updated to Boost to 1.77
- Increased timeout when creating transaction from 30 to 180 seconds

#### 4.4.1.17 Android (released 2021-09-05)
- Downgrade of used Boost version to 1.73 as with 1.75 app is crashing on Android 10 and below
- Included Tor version updated to 0.4.5.9
Expand Down
6 changes: 4 additions & 2 deletions scripts/include/handle_buildconfig.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,12 @@ ANDROID_API_ARMV7=26
ANDROID_API_X86_64=26
##### ### # Boost # ### #####################################################
#BOOST_VERSION=1.73.0
#BOOST_ARCHIVE_HASH=9995e192e68528793755692917f9eb6422f3052a53c5e13ba278a228af6c7acf
#BOOST_VERSION=1.75.0
#BOOST_ARCHIVE_HASH=aeb26f80e80945e82ee93e5939baebdca47b9dee80a07d3144be1e1a6a66dd6a
BOOST_VERSION=1.73.0
BOOST_ARCHIVE_HASH=9995e192e68528793755692917f9eb6422f3052a53c5e13ba278a228af6c7acf
BOOST_VERSION=1.77.0
BOOST_ARCHIVE_HASH=5347464af5b14ac54bb945dc68f1dd7c56f0dad7262816b956138fc53bcc0131
##### ### # Qt # ### ########################################################
# Path to the folder which contains the Qt installation
Expand Down
4 changes: 2 additions & 2 deletions src/qt/spectreclientbridge.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ void SpectreClientBridge::sendCoins(bool fUseCoinControl, QString sChangeAddr)
else
sendResultPendingReply = window->walletModel->sendCoins(0, recipients, coins);

if (!sendResultPendingReply.waitForFinished())
if (!sendResultPendingReply.waitForFinished(180000))
return abortSendCoins(tr("Core not responding."));

sendResult = sendResultPendingReply.returnValue();
Expand All @@ -246,7 +246,7 @@ void SpectreClientBridge::sendCoins(bool fUseCoinControl, QString sChangeAddr)
sendResultPendingReply = window->walletModel->sendCoinsAnon(sendResult.fee(), recipients, coins);
else
sendResultPendingReply = window->walletModel->sendCoins(sendResult.fee(), recipients, coins);
if (!sendResultPendingReply.waitForFinished())
if (!sendResultPendingReply.waitForFinished(180000))
return abortSendCoins(tr("Core not responding."));
sendResult = sendResultPendingReply.returnValue();
sendCoinsStatus = sendResult.status();
Expand Down

0 comments on commit 6b129fc

Please sign in to comment.