* Update build docs and migrate Android builds to Docker * Update NDK and move steps directly into Dockerfile * Fix NDK installation via script and Dockerfile * Migrate to @MrCyjaneK's existing Dockerfile (with optimizations) * Add .dockerignore and migrate Dockerfile to root of project * Revert .gitignore changes * Update Android and Linux builds and resolve Linux build issue * Fix git repo for Linux and Android build instructions * Set branch to latest release in build docs * Ensure `flutter clean` is run before building * Fix Linux completion example * Don't build Zano for Linux * Apply suggestions from code review Co-authored-by: cyan <cyjan@mrcyjanek.net> * Explicitly add automake package to Dockerfile * Improve logging on Android and Linux builds via Docker * Improve Dockerfile comments and ordering * Fix issues in macOS and iOS builds docs (thanks @MrCyjaneK) * Update docs/builds/IOS.md [skip ci] * Update docs/builds/IOS.md [skip ci] * Update docs/builds/MACOS.md [skip ci] * Update docs/builds/IOS.md [skip ci] * Fix and improve iOS and macOS build docs * Windows build doc improvements Co-authored-by: cyan <cyjan@mrcyjanek.net> * add missing dependency to Dockerfile * Update Windows build docs * More fixes and optimizations to the Windows build docs * Add git config to Windows build doc * Fix shell location/commands in Windows build doc * Fix WSL commands in Windows build doc * Apply suggestions from code review Co-authored-by: cyan <cyjan@mrcyjanek.net> --------- Co-authored-by: cyan <cyjan@mrcyjanek.net>
3.4 KiB
Building Cake Wallet for macOS
Requirements and Setup
The following are the system requirements to build Cake Wallet for your macOS device.
macOS 15.3.1
Xcode 16.2
Flutter 3.24.4
1. Installing dependencies
For installing dependency tools you can use brew Install brew.
You may easily install them on your build system with the following command:
brew install autoconf automake binutils ccache cmake cocoapods go libtool pigz pkg-config
sudo softwareupdate --install-rosetta --agree-to-license
2. Installing Xcode
Download and install the latest version of Xcode from macOS App Store.
Run the following to properly initialize Xcode:
sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer
sudo xcodebuild -runFirstLaunch
3. Installing Flutter
Install Flutter, specifically version 3.24.4
by following the official docs.
NOTE: as 3.24.4
is not the latest version, you'll need to download it from https://docs.flutter.dev/release/archive instead of the link in the docs above.
4. Installing Rust
Install Rust from the rustup.rs website.
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
5. Verify Flutter and Xcode installation
Verify that Flutter and Xcode have been correctly installed on your system with the following command:
flutter doctor
The output of this command should appear like this, indicating successful installations. If there are problems with your installation of Flutter or Xcode, they must be corrected before proceeding.
Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel stable, 3.24.4, on macOS 15.x.x)
...
[✓] Xcode - develop for iOS and macOS (Xcode 16.2)
...
6. Acquiring the Cake Wallet source code
Download the latest release tag of Cake Wallet and enter the source code directory:
git clone https://github.com/cake-tech/cake_wallet.git --branch main
cd cake_wallet/scripts/macos/
NOTE: Replace main
with the latest release tag available at https://github.com/cake-tech/cake_wallet/releases/latest.
7. Setup and build Cake Wallet from source
We need to generate project settings like app name, app icon, package name, etc, including what specific variant of the app we want to build.
To build Cake Wallet from source, run the following:
source ./app_env.sh cakewallet
For Monero.com, instead do:
source ./app_env.sh monero.com
Build the necessary libraries and their dependencies:
./build_monero_all.sh
NOTE: This step will take quite a while, so be sure you grab a cup of coffee or a good book!
Then run the configuration script to setup app name, app icon, etc:
./app_config.sh
8. Prepare Flutter
Change back to the root directory of the Cake Wallet source code and install Flutter package dependencies:
cd ../../
flutter pub get
Generate secrets as placeholders for official API keys etc. along with localization files and mobx models:
dart run tool/generate_new_secrets.dart
dart run tool/generate_localization.dart
./model_generator.sh
9. Build
flutter build macos --release
Then you can open macos/Runner.xcworkspace
with Xcode to archive the application.
If you want to run on a connected device, simply run:
flutter run