skip to Main Content

I’m developing an app with React Native. But when generate .aab file to upload to Google Play Console (its size is about 370MB), I met Your App Bundle contains the following configurations where the initial install would exceed the maximum size of 150 MB. I found that my base is over 150MB (limit of GG), so any body can help me with How to split app’s assets and delivery it after
user installed it
or any way can help to upload my app. My app doesn’t (and can’t) use a host. Thankyou!

enter image description here

2

Answers


  1. Try reducing the size. Can’t exceed the limit

    Login or Signup to reply.
  2. You can not upload files greater then that exceed 150MB as it’s described in the documentation:

    Publishing with Android App Bundles helps your users to install your app with the smallest downloads possible and increases the compressed download size limit to 150 MB.

    https://developer.android.com/guide/app-bundle#size_restrictions

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