Reputation: 44680
I use Expo for development. I don't know how to build .apk
for Android. I checked out Building Standalone Apps documentation. It says:
This will take a few minutes, you can check up on it by running exp build:status. When it’s done, you’ll see the url of a .apk (Android) or .ipa (iOS) file — this is your app.
exp build:android
I tried a few times. It's been a while. No errors, no links. Nothing on the web portal. Am I doing something wrong?
Upvotes: 1
Views: 4588
Reputation: 2103
Your options are
Cannot start a new build, as there is already an in-progress build.
error Command failed with exit code 1.
then your Expo.io build is stuck. Please go to https://expo.io -> Builds and look for the latest (IOS/Android) build. If it's in "Queued" state (after 17 days as in my case), open the details and click Cancel Build.
Upvotes: 0
Reputation: 1072
Expo build take some time (6-15min). You can see build progress log using link
Web link show all builds of your accounts. You can download old build or see log
or in short you can
exp build:status
Upvotes: 0
Reputation: 1860
expo has it's integrated system if you are using their building structure.
The building takes a while as stated. (Around 5-10mins) your build process starts with the command;
exp build:android
After a while, check the status of your build with command;
exp build:status
If your build it done, this comman will give you your .apk file url. If not, it will say your build is still in progress and try in a little bit later again.
Upvotes: 4