make sure in app.json
{
"expo": {
"name": "your app name",
"description": "your app desc",
....,
"ios": {
"supportsTablet": true
},
"android": {
"package": "com.yourcompany.yourappname"
}
}
}
then run expo build:android or expo ba
after that
run expo build:status
you'll find, something like this, the Apk's is hosted on amazon aws
[exp] Android:
[exp] APK: https://HOST/yourapp.apk
Answer from Ansyori on Stack OverflowVideos
make sure in app.json
{
"expo": {
"name": "your app name",
"description": "your app desc",
....,
"ios": {
"supportsTablet": true
},
"android": {
"package": "com.yourcompany.yourappname"
}
}
}
then run expo build:android or expo ba
after that
run expo build:status
you'll find, something like this, the Apk's is hosted on amazon aws
[exp] Android:
[exp] APK: https://HOST/yourapp.apk
You will need to run expo build:status. When building process is complete you will see link to download apk (Android) or ipa(IOS) file.
As the title says
I’m new to react native.
I have an issue with my app where it works expo go but not working in apk and i have exhausted expo free tier. If there there is way to do that pls help
I finally got it to work. The funny part is that I got the answer from the AI that is now banned here. But I just tested this solution on a real android device and it works. Anyway there are two changes needed:
REQUEST_INSTALL_PACKAGESmust be added toapp.jsonfile.- Uri for intent must be a content uri so:
localUri = await FileSystem.getContentUriAsync(localUri)
Maybe you can use this command to build release build.
expo:build android
For that you have to signup in Expo's website.
After that you can get apk in Expo's server.
I want to build apk of my expo react native app but without using expo.dev Since they have a limit of 30 builds, and its very slow as well. Is there any way to build the apk locally? I ran the expo run:android command, it generated android folder, I tried to use android studio to build apk, but I got the development build instead.
I also tried editing eas.json, it gives the apk on their website itself, but is there any way to generate apk locally? Also it works in my one project, but in another project of mine, it doesn't work, I still get playstore build only.
Or how to effectively use the update command instead of making new apk everytime, because free account gets 10000 updates in a month, so that is suffice for me. But not able to figure out the update part.