EAS Android Build does not open app

We are almost at the final stage of our app submission, but unfortunately eas build for android does not work, the apk is generated but when installed it does not show in apps list and the open button is disabled after installation. On the other hand eas build for ios works and also apk generated via expo build:android -t apk works perfectly. Hers is my eas.json

  "cli": {
    "version": ">= 0.54.1"
  },
  "build": {
    "development": {
      "distribution": "internal",
      "android": {
        "gradleCommand": ":app:assembleDebug"
      },
      "ios": {
        "buildConfiguration": "Debug"
      }
    },
    "preview": {
      "node": "16.13.0",
      "distribution": "internal",
      "android": {
        "developmentClient": "false",
        "buildType": "apk",
        "gradleCommand": ":app:assembleRelease"
      }
    },
    "production": {}
  },
  "submit": {
    "production": {}
  }
}```

This helped!

1 Like