I uploaded my app using the Android app bundle tool, which to my understanding creates several APKs (.aab files) for each device configuration with the corresponding resource files.
Now lets say I get a new phone with different resolution and install all my previous apps from backup, will it keep the same .aab file from the previous device just as it keeps the shared preferences? meaning the wrong image sizes ? Or will the resources not be found causing bugs such as
- Caused by android.view.InflateException: Binary XML file line #15:
Error inflating class ImageView
- Caused by android.content.res.Resources$NotFoundException: Resource ID #0x7f080263
I know these crashes can be occur by sideloading the app (Android App Bundle introduces Resource Not found crash in Android app), is this the same case?