darkfi 0ee4e998eb darkirc: set a panic hook so when panic is invoked in a multi-threaded app it just straight up aborts the node immediately. 1 год назад
..
assets cceb0e90c0 wallet: put new background image 1 год назад
bin bfd1949b07 wallet: add draw simulator for debugging miniquad issues 1 год назад
data 495713e4b6 wallet: cleanup dir a little bit 1 год назад
gui 58ad1fe237 wallet/pyapi: show property dependencies 1 год назад
java 13597c5c4e wallet: adjust priority for overlay, and make it a child of content. 1 год назад
pydrk 58ad1fe237 wallet/pyapi: show property dependencies 1 год назад
release 8b7bb60f53 wallet: build system: add macos logo, control build using features and a cargo update 1 год назад
src 0ee4e998eb darkirc: set a panic hook so when panic is invoked in a multi-threaded app it just straight up aborts the node immediately. 1 год назад
.gitignore 441d8e5f8b darkwallet: Add Cargo.lock 1 год назад
Cargo.lock 8b7bb60f53 wallet: build system: add macos logo, control build using features and a cargo update 1 год назад
Cargo.toml 495713e4b6 wallet: cleanup dir a little bit 1 год назад
Dockerfile 779164dc75 chore: updated nightly references version 1 год назад
Makefile 8b7bb60f53 wallet: build system: add macos logo, control build using features and a cargo update 1 год назад
README.md be45adba13 wallet: cargo update + add windows instructions + put file logger to trace level 1 год назад
build.rs 4aa44b36a0 wallet: tor-dirmgr tries to pull sqlite3, which on android has a missing symbol __extenddftf2 due to missing compiler builtins. We therefore link against clang_rt.builtins for each target_arch on android using a build.rs. See the code comment for more details. 1 год назад
echo.py 061f50c2a0 wallet: add android terminal texture display 2 лет назад
quad.toml b4a620986b wallet: android autosuggest typing module!! 1 год назад
rust-toolchain.toml 779164dc75 chore: updated nightly references version 1 год назад

README.md

Unix (Linux/Mac)

Install rustup and cargo install cargo-limit, then run:

make

Windows

Install rustup and follow the instructions.

If you get the error "VCRUNTIME140.dll was not found", then install Microsoft Visual C++ Redistributable.

Android

Make sure you have podman installed. Then run:

# You only need to build the container once
podman build -t apk .

make android

To debug any issues, you can enter an interactive terminal using make cli.

To delete everything, run podman system reset.

Useful Dev Commands

This is just for devs. Users ignore this.

Debugging Missing Symbols

"hb_ft_font_create_referenced"

nm libharfbuzz_rs-5d6b743170eb0207.rlib | grep hb_ | less

Resolve Dependency Issues

cargo tree --target aarch64-linux-android --invert openssl-sys

Examine the APK

apktool d target/android-artifacts/release/apk/darkwallet.apk -o dw-apk