Reputation: 369
I made a build for Android last week and everything works well. I have made some changes and now I want to make another build with expo build: android
and I get this error.
Checking if this build already exists…
Entity Not Found.
It works well in iOS but I couldn’t make the build for Android. any thoughts? thanks!
Upvotes: 2
Views: 2100
Reputation: 181
I fixed this error by changing the "slug" value to something else in the app.json file
Upvotes: 1
Reputation: 109
try to build with --clear-credentials
flag...
or try in another expo account.
Upvotes: 0
Reputation: 1
Deleting all builds of the app from the project in Expo alone helped me. Don't forget to refresh the page between builds removal as changes do not immediatlety reflected
Upvotes: 0
Reputation: 1525
I recently encountered this issue, tried a bunch of things. not sure which resolved it but here is a list.
In app.json
file I changed the value of android.package
from "io.expo.client" to "com.mydomain.myapp"
"android": {
"package": "com.expo.client", // ---> "com.mydomain.myapp"
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#FFFFFF"
}
},
Then after that and a few other changes expo build:android
resulted in an error Entity Not Found.
app.json
fileexpo build:android -c
on your app terminal to build with new credentialsUpvotes: 0