## Building https://www.youtube.com/watch?v=FdjczjkwQKE ``` npx expo run:ios --device iPhone 15 // local npx expo run:ios --device 00008020-000555862E39002E // if it doesn't work cd ios pod install ``` ### iOS https://github.com/facebook/react-native/issues/34651 `cd ios && RCT_NEW_ARCH_ENABLED=1 pod install` Edit: When you add a package to your project and need to run a pod install, use the command above so the new arch stays enabled. Otherwise, you will return to your error state until you run it again. Just a heads up. ^ax3mcl #### Errors ``` cd ios xcodebuild clean pod deintegrate pod install --repo-update cd .. ``` https://docs.expo.dev/guides/local-app-development/ … … ### Android - Android studio - Java 17 needed - Set path in gradle.properties - update version in app/build.gradle ## Auth - Supabase - Set up Google using their docs ## Debugging https://www.reddit.com/r/reactnative/comments/1atiu5l/how_to_watch_network_logs_in_a_development_build/ maybe try running with --configuration Debug ???