* implement v3 backup system - Add new BackupServiceV3 with chunked backup support and checksums - Implement json-based metadata in backup system - Instead of binary file export a .zip file that user can open and see that it is a cake backup (should also prevent 3rd party software from corrupting binary data inside of the file, in case it doesn't checksum will fail, and user will know for sure that backup got corrupted) - Update flutter to 3.27.4 to use archive ^4.x.x (it offers in memory archive operations) * fix wallets not getting restored properly * prevent out of memory errors on files that are way too big during restore * Update lib/view_model/backup_view_model.dart [skip ci] * Update lib/core/backup_service.dart [skip ci] * Update lib/core/backup_service.dart --------- Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com>
3.7 KiB
Building Cake Wallet for iOS
Requirements and Setup
The following are the system requirements to build Cake Wallet for your iOS device.
macOS 15.3.1
Xcode 16.2
Flutter 3.27.4
NOTE: Newer versions of macOS and Xcode may also work, but have not been confirmed to work by the Cake team.
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 automake ccache cmake cocoapods go libtool pkgconfig xz
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
To enable iOS build support for Xcode, perform the following:
- Open Xcode
- Navigate to settings
- Open Components tab
- Click "Get" next to iOS 18.2 (or any other version that is showing up as default)
3. Installing Flutter
Install Flutter, specifically version 3.27.4
by following the official docs.
NOTE: as 3.27.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, they must be corrected before proceeding.
Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel stable, 3.27.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/ios/
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
./build_mwebd.sh
./build_decred.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 ios --release --no-codesign
Then you can open ios/Runner.xcworkspace
with Xcode to archive the application.
If you want to run on a connected device, simply run:
flutter run