Android: Packaging for both Armv7 and Arm64 generates two apks

In 4.15 you were unable to build both Arm7 and Arm64 at the same time in Android because it would crash sometime during the build process.

So you would have to do a build for each and you’d get two different apks and if you gave them different version numbers you could make them part of the same release on the play store. Annoying but manageable.

In 4.16 it doesn’t crash but it creates two separate apks. But because these apks were built at the same time they have the same StoreVersion number so if you try uploading both the second one will just overwrite the first.

So my question is do I still need to do two separate builds or is there just some flag I havent set which will give me a single hybrid apk?