1

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

1 Answer 1

-1

This may be a problem in the eas configuration setup

You can try build with expo

$ expo build:android

also i attached my eas file

{
 "cli": {
 "version": ">= 0.52.0"
},
"build": {
  "preview": {
    "android": {
      "buildType": "apk"
    }
 },
"preview2": {
  "android": {
    "gradleCommand": ":app:assembleRelease"
  }
 },
 "preview3": {
   "developmentClient": true
  },
  "production": {}
 },
 "submit": {
  "production": {}
 }
}
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.