i want to split my application to more than 1 based on different ABI (x86_64, x86, armeabi-v7a, arm64-v8a). Right now im successed to get different apk based on that ABI there is 4 apk with different ABI. but i need .aab file. When i try build to .aab file its just show 1 file .aab. Is there a way to build .aab file with differentt ABI? i have use this code :
splits {
abi {
enable true
reset()
include "x86_64", "x86", "armeabi-v7a", "arm64-v8a"
universalApk false
}
}