外部安装适用于支持它的 Android 版本,但也支持那些不支持的 Android 版本

发布于 2025-01-05 08:18:48 字数 111 浏览 0 评论 0原文

是否可以允许为 Android 1.5 编写的应用程序指定版本 2.2 中引入的清单选项?

特别是,我希望允许我的应用程序安装到支持它的操作系统版本的外部存储中,同时也能够在之前的版本上运行。

Is it possible to allow an app written for Android 1.5 to specify manifest options that were introduced in version 2.2?

In particular, I'd like to allow my application to be installed to external storage for those OS versions that support it, while being able to run on versions prior as well.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

胡渣熟男 2025-01-12 08:18:48

是的!来自 Android 开发指南 >应用程序安装位置> 向后兼容性部分

  1. 在元素中包含值为“auto”或“preferExternal”的 android:installLocation 属性。
  2. 保留您的 android:minSdkVersion 属性(小于“8”),并确保您的应用代码仅使用与该级别兼容的 API。
  3. 为了编译您的应用,请将构建目标更改为 API 级别 8。这是必要的,因为较旧的 Android 库无法理解 android:installLocation 属性,并且在该属性存在时不会编译您的应用。

Yup! From the Android Dev Guide > App Install Location > Backward Compatibility section,

  1. Include the android:installLocation attribute with a value of "auto" or "preferExternal" in the element.
  2. Leave your android:minSdkVersion attribute as is (something less than "8") and be certain that your application code uses only APIs compatible with that level.
  3. In order to compile your application, change your build target to API Level 8. This is necessary because older Android libraries don't understand the android:installLocation attribute and will not compile your application when it's present.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文