cake_wallet icon indicating copy to clipboard operation
cake_wallet copied to clipboard

added files to step users through building cake on ios

Open tannerdsilva opened this issue 3 years ago • 3 comments

tannerdsilva avatar Jan 05 '22 04:01 tannerdsilva

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 :)

mkyq avatar Jan 06 '22 10:01 mkyq

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 Oneliner cd cw_core && flutter pub get && flutter packages pub run build_runner build --delete-conflicting-outputs (then cd ..)
  • cd cw_monero + $ flutter pub get + $ flutter packages pub run build_runner build --delete-conflicting-outputs Oneliner cd cw_monero && flutter pub get && flutter packages pub run build_runner build --delete-conflicting-outputs (then cd ..) 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 Oneliner cd 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 avatar Jan 06 '22 11:01 mkyq

@mkyq pushed updates

tannerdsilva avatar Jan 20 '22 06:01 tannerdsilva