相关疑难解决方法(0)

如何从 Android App Bundle 中排除 ABI?

我知道在 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", …
Run Code Online (Sandbox Code Playgroud)

android gradle google-play android-app-bundle

4
推荐指数
1
解决办法
3336
查看次数

标签 统计

android ×1

android-app-bundle ×1

google-play ×1

gradle ×1