gpt4 book ai didi

android - 按密度拆分的 APK 仍包含所有资源

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:03:22 31 4
gpt4 key购买 nike

我决定尝试 apk sliptting 来减小我的 apk 的大小。我将以下内容添加到我的 gradle 构建文件中

splits {

// Configures multiple APKs based on screen density.
density {

// Configures multiple APKs based on screen density.
enable true

// Specifies a list of screen densities Gradle should not create multiple APKs for.
exclude "ldpi"

// Specifies a list of compatible screen size settings for the manifest.
compatibleScreens 'small', 'normal'
}
}

这成功地为各种密度生成了单独的 apk。但是,我注意到所有 apk 的大小都相同,没有一个比通用 apk 小。因此,我将一个 (app-hdpi-release.apk) 加载到 apk 分析器中,发现它包含所有资源。没有一个被剥离。

所有配置所做的实际上是生成具有不同文件名的相同 apk。我错过了什么吗?是否有任何其他构建选项可能会阻止资源被删除?

最佳答案

我做了一些点击和试验,最后它接受了。在我仅根据屏幕密度进行拆分之前。然后我添加了标签 $compatibleScreens$ 并且它起作用了。

这是最后的分割 block -

android {
  ...
  splits {

    density {
      enable true

      reset()
      include "mdpi", "hdpi", "xhdpi", "xxhdpi"

      // This is the line of code which got it right
      compatibleScreens 'small', 'normal', 'large', 'xlarge'
    }
  }
}

关于android - 按密度拆分的 APK 仍包含所有资源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44908387/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com