cake_wallet
cake_wallet copied to clipboard
added files to step users through building cake on ios
Intel Mac
- it should works same on arm too.
`- Android SDK 28
- Android NDK 17c` I'm not sure that android sdk and ndk are required for iOS build :)
I just updated main with a lot of changes. Now need to update the instruction:
before $ flutter packages pub run build_runner build --delete-conflicting-outputs
in root app directory need to do next:
-
cd cw_core
+$ flutter pub get
+$ flutter packages pub run build_runner build --delete-conflicting-outputs
Onelinercd cw_core && flutter pub get && flutter packages pub run build_runner build --delete-conflicting-outputs
(thencd ..
) -
cd cw_monero + $ flutter pub get + $ flutter packages pub run build_runner build --delete-conflicting-outputs
Onelinercd cw_monero && flutter pub get && flutter packages pub run build_runner build --delete-conflicting-outputs
(thencd ..
) if user want cakewallet and not monero.com app then also -
cd cw_bitcoin + $ flutter pub get + $ flutter packages pub run build_runner build --delete-conflicting-outputs
Onelinercd cw_bitcoin && flutter pub get && flutter packages pub run build_runner build --delete-conflicting-outputs
Also now need to generate different info.plist file and icon for monero.com and cakewallet apps. For that need to: (in root directory)
-
cd scriptips/ios
-
source ./app_env.sh <monero.com OR cakewallet>
based on what type of the app you want to build -
./app_config.sh
(back to root directory)
Steps above better to run before running of deps build scripts.
@mkyq pushed updates