Skip to content

Instantly share code, notes, and snippets.

@johhansantana
Created December 5, 2023 14:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save johhansantana/943b568949d2d70e756d40ca8ce1d73d to your computer and use it in GitHub Desktop.
Save johhansantana/943b568949d2d70e756d40ca8ce1d73d to your computer and use it in GitHub Desktop.
build expo without eas cli
# To generate all the Android and IOS files
npx expo prebuild
# Make sure to connect your device or to run your Emulator
npx react-native run-android --mode="release"
# If you want to sign the APK and publish to Google Play Store.
npx react-native build-android --mode=release
# to build local apk
cd android && ./gradlew assembleRelease
# source https://github.com/expo/eas-cli/issues/1300#issuecomment-1834275766
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment