0

我目前正在考虑将新的 App Bundle 功能用于已发布的应用程序。

该应用程序的大小为 13MB,但使用 61MB 的扩展文件来存储应用程序必需的音频样本库(静态音频文件的集合)。

第一个原因是当我第一次开发应用程序时,应用程序大小限制为 50MB。但最重要的是,这运行得很好,因为当应用程序更新时,用户只需下载 13MB 的 APK 文件,因为 .obb 扩展文件不需要更新。

我现在想使用 Android Bundle 通过拆分密度来减小 APK 大小,但此功能显然与 OBB 文件不兼容。

我可以将音频示例库放在 Android Bundle 中,但如果我理解正确,每次用户更新应用程序时都会下载该音频库?

有没有办法通过提供 Android Bundle 来实现“两全其美”,但避免在每次更新时下载库?

4

1 回答 1

0

The Play Store serves patches of APKs for updates (i.e. only the difference between the version currently on device and the newest version being installed), so if that big file doesn't change, the update will be small.

于 2018-12-26T22:01:57.340 回答