我知道在 Gradle 中生成拆分时可以选择排除 ABI,如下所示:
android {
splits {
// Configures multiple APKs based on ABI.
abi {
// Enables building multiple APKs per ABI.
enable true
// By default all ABIs are included, so use reset() and include to specify that we only
// want APKs for x86 and x86_64.
// Resets the list of ABIs that Gradle should create APKs for to none.
reset()
// Specifies a list of ABIs that Gradle should create APKs for.
include "x86", "x86_64"
}
}
}
这里是拆分配置的官方参考
现在建议在将您的应用程序发布到 Play 商店时使用 App Bundles,我没有看到任何选项可以通过使用 Gradle 或 Play 商店发布控制台从该捆绑包中排除 ABI。
到目前为止,我发现的唯一线索是您可以启用/禁用特定的拆分变体。例如,这里是如何根据文档完全禁用 ABI 捆绑拆分:
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 {
abi {
// This property is set to true by default.
enableSplit = true
}
}
}
但是没有提及如何禁用/启用特定的 ABI 集。
我已经abiFilters
指定排除不支持的 NDK,但看起来它对 App Bundle 没有影响。
更新:我假设abiFilters
正在指定要从 App Bundle 中排除的 ABI,但它完全相反,他们的目的是列出要包含的 ABI。在此澄清之后,一切似乎都正常工作。