Created
December 5, 2023 14:59
-
-
Save johhansantana/943b568949d2d70e756d40ca8ce1d73d to your computer and use it in GitHub Desktop.
build expo without eas cli
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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