'No option to upload APK in play console

I cannot find an option to upload APK, only option available is to upload app bundle. I have a signed APK that I need to publish.

enter image description here



Solution 1:[1]

You cannot upload apk files to the play store since AUGUST 2021. you need to upload in .aab format and an existing app update is also required to have .AAB format. you can generate aab from android studio as below

  • Step 1

Step 1

  • Step 2

enter image description here

  • Step 3 enter image description here

  • Step 4

enter image description here

  • Step 5 (click on locate)

enter image description here

  • Step 6

enter image description here

Now upload .aab to play store

Also, note that the play store now required API level 30 for all apps so make sure you have that

Solution 2:[2]

Since August 2021 You cannot upload .apk files to the play store you will need to upload an .aab file For Expo you can generate the file as follows:

  1. In expo app run eas build --platform android
  2. Go to https://expo.dev and download the .aab file
  3. In play store click BROWSE FILES and choose the .aab file from your computer to upload the archive.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1
Solution 2 Morris S