make sure in app.json
{
"expo": {
"name": "your app name",
"description": "your app desc",
....,
"ios": {
"supportsTablet": true
},
"android": {
"package": "com.yourcompany.yourappname"
}
}
}
then run exp build:androidorexp ba
thereafter
run exp build:statusyou will find exp build:statussomething like this apk is hosted on amazon aws
[exp] Android:
[exp] APK: https://HOST/yourapp.apk
source
share