Files
monero_c/docs/Writerside/topics/Android.md
cyan d04dcf67ec initial work on docs (#69)
* initial work on docs
* fix DOCKER_VERSION
* update location
* add the path **properly**
* Update docs workflow
2024-10-17 10:50:22 +02:00

1.1 KiB

Android

Building on linux has been tested on

  • ubuntu:22.04 (docker tag)

Install dependencies

$ apt update
$ apt install -y build-essential pkg-config autoconf libtool \
    ccache make cmake gcc g++ git curl lbzip2 libtinfo5 gperf \
    unzip python-is-python3

Prepare source

If you are running in docker or have not configured git you may need to do the following:

git config --global --add safe.directory '*'
git config --global user.email "ci@mrcyjanek.net"
git config --global user.name "CI mrcyjanek.net"
$ git clone https://github.com/mrcyjanek/monero_c --recursive
$ cd monero_c
$ ./apply_patches.sh monero

Building

$ ./build_single.sh monero x86_64-linux-android -j$(nproc) $ ./build_single.sh monero aarch64-linux-android -j$(nproc) $ ./build_single.sh monero armv7a-linux-androideabi -j$(nproc)

Known issues

None. Open an issue if you find something not working.