I experimented with Android Multiple Apk on the weekend. It is really simple to create and use.
Why?
If you want to provide as smaller APK file as possible for the end user Multiple APK give you a possibility to split up Android 32Bit and Android 64 bit.
Google Play Store will choose APK depends on a user device.
How?
Pretty simple. You need to follow the next steps:
- Build APK using one of architecture: 32bit for example.
- Increase Android Version code (Project Version could be the same)
- Build APK using another architecture (64bit)
- When You create a new release in Google Play Console upload both APKs files in the same release.
Profit!!1
UPD: of course, you are still able to bundle both architectures in one APK file.
UPD1: 32bit apk should have lower Version Code than 64bit apk