Как сказал @Vrushi Patel, это связано с комплектами приложений для Android.Чтобы это исправить, вам нужно отредактировать блок android.bundle в build.gradle базового модуля, как показано ниже, как указано в официальной документации :
android {
// When building Android App Bundles, the splits block is ignored.
splits {...}
// Instead, use the bundle block to control which types of configuration APKs
// you want your app bundle to support.
bundle {
language {
// Specifies that the app bundle should not support
// configuration APKs for language resources. These
// resources are instead packaged with each base and
// dynamic feature APK.
enableSplit = false
}
density {
// This property is set to true by default.
enableSplit = true
}
abi {
// This property is set to true by default.
enableSplit = true
}
}
}