You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
 
 
 
Go to file
fuwa 5a77c137a2
add collect task
5 years ago
cyberwow use wownero v0.6.1.1 5 years ago
etc/nix init 5 years ago
res init 5 years ago
.gitignore init 5 years ago
LICENSE init 5 years ago
Makefile add collect task 5 years ago
README.md add play store badge 5 years ago

README.md

CyberWOW

A dumb android full node for Wownero.

Get it on Google Play

How to build

Compile wownerod for android-arm64

pushd .
git clone https://github.com/wownero/wownero
cd wownero
git submodule init && git submodule update

docker build -f utils/build_scripts/android64.Dockerfile -t wownero-android .
# Create container
docker create -it --name wownero-android wownero-android bash
# Get binaries
docker cp wownero-android:/src/build/release/bin .

The binary needed is ./bin/wownerod.

Install flutter and make sure it's in path

Compile CyberWOW

popd
git clone https://github.com/fuwa0529/cyberwow/
cd cyberwow

mkdir -p cyberwow/native/output/arm64
mkdir -p cyberwow/native/output/x86_64

# Copy wownerod that we just built
cp $PATH_TO_WOWNEROD cyberwow/native/output/arm64/
# Generate a dummy x86_64 bin
touch cyberwow/native/output/x86_64/wownerod

make build

Resulting apk is in cyberwow/build/app/outputs/apk/release/app-release.apk.