Google Play Console - APK sin optimizar

Buenos días,

cuando compilo con expo build:android y subo la APK a Google Play Console me doce el siguiente error respecto a la .APK

APK sin optimizar
Advertencia:
Este APK tiene códigos y recursos que no se utilizan y que se están enviando a los usuarios. Reduce el tamaño de tu aplicación con el Android App Bundle. Si no optimizas tu aplicación para distintas configuraciones de dispositivo, pesará demasiado para descargarla e instalarla en los dispositivos de los usuarios. Las aplicaciones más pesadas tienen un menor volumen de descargas. Además, ocupan mucho espacio de almacenamiento en los dispositivos de los usuarios.

Solución:
Utiliza el Android App Bundle para que se optimice automáticamente según distintas configuraciones de dispositivo o gestiónalo tú con varios APKs.

Pero el proyecto esta utilizando todo y esta bien optimizado.

Hi

This warning is just saying that your APK is larger than it needs to be. It probably contains both 32-bit and 64-bit versions of the app amongst other things.

The solution is to build an Android App Bundle (.aab) file instead. When you do this and upload it to Google Play, then when a user installs the app, Google Play will generate a .apk file specifically for the user’s device. So if the user has a 32-bit phone then Google Play will generate a 32-bit .apk file from your .aab file. The resulting .apk installed by the user will be smaller than the original .aab (and your current .apk) file.

See the following comment that @adamjnav sent to another user having the same problem:

Here’s another similar thread:

1 Like

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