Sample development build is available in the releases section
- Make sure that nodejs, npm, yarn, and git is installed
- Open the terminal in the path you want, and run this command
git clone https://github.com/Shashank-R87/Yoga_Studio.git( you can also direclty download and extract the code) - Next
cd Yoga_Studioand thennpm install( this should start installing all the required packages - Run
npm run startto start the app server - You can install an android app called Expo Go from Google Play Store and scan the QR Code to run the app on your Android phone
- Or you can click
awhen the server is running to open the app in the Android Virtual Device ( works only if Android Studio and an AVD is created )
- Install EAS using
npm install -g eas-cli - Configure the project by
eas build:configureand select Android - Open the eas.json file and change the preview to
"preview" : { "android" : { "buildType": "apk"}} - After this login in to your eas account using
eas login - After logging in use the command
eas build -p android --profile previewto create the APK in the EAS Cloud Server
- Install NodeJs (npm will also be installed with it)
- Install Git
npm i -g expo-clito install expo cli globallynpm i -g create-expo-appto install create-expo-app globally ( used to initiate the projectnpx create-expo-app <project name>)npm i -g eas-clito install eas cli globally ( used to make prebuilds, development builds and to build APKs )