Automatically roll out Android release after `eas submit`

SDK Version: 5.3.0
Platform: Android

We have an app that is currently a draft app in the “internal testing” track.

After running eas submit -p android, the release appears in the “Release overview” page of the Google Play Console. However, the release is not automatically rolled out; this has to be done manually on the Google Play Console.

I am wondering if there is a way to automate this.

Our app.json looks like this:

{
  "cli": {
    "version": ">= 0.48.2"
  },
  "build": {
    "development": {
      "developmentClient": true,
      "distribution": "internal"
    },
    "preview": {
      "distribution": "internal"
    },
    "production": {}
  },
  "submit": {
    "production": {
      "android": {
        "track": "internal",
        "releaseStatus": "draft"
      }
    }
  }
}

To build and submit the app, we run eas build -p android --profile production followed by eas submit -p android --profile production.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.