I am using expo for building a React Native app.
I am using command : eas build -p android --profile preview from expo documentation to make an apk file for android.
Latest i use that link provided by expo to download the apk file and install in my android device. But when i install it, it doesn't reflect the new changes i made..
I also tried updating my versionCode and version and then typing eas build:configure.
My eas.json structure:
{
"cli": {
"version": ">= 2.5.1"
},
"build": {
"development": {
"developmentClient": true,
"distribution": "internal"
},
"local": {
"distribution": "internal",
"android": {
"buildType": "apk"
}
},
"production": {}
},
"submit": {
"production": {
"ios": {}
}
}
}
I want latest changes to reflect in lastest apk build