skip to Main Content

Please how can I convert .apk to .aab without Android studio

I created an Android app using AIDE and I wanted to upload to Google Play Store and then I discovered it’s only .aab file format of the app they accept.

3

Answers


  1. Yes, They still accept apk files. However, Apk files are 32 bit now. For Later Android releases like 12 and above, move your Project To Android Studio. There is no option other than using android studio because there is no other ide to support it at the moment. Please Contact google If needed any more assistance.

    Login or Signup to reply.
  2. 1- setup Android Studio

    2- open your project in Android studio

    3- from the Menu at the top choose Build then Generate Signed Bundle/APK...

    enter image description here

    4- in dialog box mark at Android App Bundle(aab) and follow steps that it

    enter image description here

    Login or Signup to reply.
  3. Via gradle – without android studio, you would use task ‘bundle’ instead of ‘assemble’

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search