Is there a shortest way for downloading app bundle in snack expo for publishing in play store . PLEASE ANSWER

Is there a shortest way for downloading app bundle in snack expo . PLEASE ANSWER

Hi @shantanupandya

Do you mean you want to export a copy of the source code from a snack?

If so, click the button shown in the screenshot below:

Hello @wodin
i want to generate a snack app bundle of my app for publishing it in playstore. Please can you tell how to generate app bundle

Download the ZIP file as in my previous comment and unzip it.

Make sure you have nodejs and expo-cli installed.

In the terminal, change into the top directory of the unzipped app and install the dependencies. (There are a couple of ways to do this, depending on whether you want to use npm or yarn. If you don’t have a preference then you may as well use npm.)

npm install

If you get an error mentioning --legacy-peer-deps then run this instead:

npm install --legacy-peer-deps

Then build the app and follow the prompts:

expo build:android

See also:

@wodin thanks for helping me :grinning_face_with_smiling_eyes: