dannybuntu on Nostr: @walletscrutiny https://walletscrutiny.com/android/io.aquawallet.android/ Update ...
@walletscrutiny
https://walletscrutiny.com/android/io.aquawallet.android/
Update 2024-09-06:
Review: AquaWallet APK Build
We followed the AquaWallet build instructions outlined in the repository, using Docker to create the build environment. Despite attempting various fixes, we encountered a critical issue preventing the successful build of the APK.
Steps Taken:
Created Dockerfile: Drafted a Dockerfile based on the repository’s build instructions to set up the required environment.
Ran Docker Build Command:
docker build -t aqua -f aqua.dockerfile .
Encountered Error: During the build process, the following error was encountered:
aqua.dockerfile:17
--------------------
15 |
16 | # Run 'make setup' to pull all dependencies and pre-built binaries for GDK and boltz-rust
17 | >>> RUN nix develop --experimental-features 'nix-command flakes' --command /bin/bash -c "make setup"
18 |
19 | # Build the APK
--------------------
ERROR: failed to solve: process "/bin/sh -c nix develop --experimental-features 'nix-command flakes' --command /bin/bash -c \"make setup\"" did not complete successfully: exit code: 127
This error indicates that the command failed to execute due to missing dependencies or an issue with Nix’s experimental features. The make setup command, essential for pulling all necessary dependencies and binaries, could not be completed.
https://walletscrutiny.com/android/io.aquawallet.android/
Update 2024-09-06:
Review: AquaWallet APK Build
We followed the AquaWallet build instructions outlined in the repository, using Docker to create the build environment. Despite attempting various fixes, we encountered a critical issue preventing the successful build of the APK.
Steps Taken:
Created Dockerfile: Drafted a Dockerfile based on the repository’s build instructions to set up the required environment.
Ran Docker Build Command:
docker build -t aqua -f aqua.dockerfile .
Encountered Error: During the build process, the following error was encountered:
aqua.dockerfile:17
--------------------
15 |
16 | # Run 'make setup' to pull all dependencies and pre-built binaries for GDK and boltz-rust
17 | >>> RUN nix develop --experimental-features 'nix-command flakes' --command /bin/bash -c "make setup"
18 |
19 | # Build the APK
--------------------
ERROR: failed to solve: process "/bin/sh -c nix develop --experimental-features 'nix-command flakes' --command /bin/bash -c \"make setup\"" did not complete successfully: exit code: 127
This error indicates that the command failed to execute due to missing dependencies or an issue with Nix’s experimental features. The make setup command, essential for pulling all necessary dependencies and binaries, could not be completed.