支持 Android 2.1 和 Apps2SD 的应用程序

发布于 2024-10-21 07:51:18 字数 185 浏览 5 评论 0原文

我目前有一个设置为支持 Android 2.2 的应用程序,并在 Android 清单文件中添加了代码行,以便将该应用程序安装到 SD 卡上。我希望能够让App也支持Android 2.1及以上版本。有什么办法可以做到这一点还是我需要有两个单独的应用程序。一个适用于 Android 2.1,另一个适用于 2.2 及更高版本。

感谢您的帮助

I currently have an app which is set to support Android 2.2 and have the Android Manifest file the line of code to enable the app to be installed on to the SD Card. I want to be able to make the App also support Android 2.1 and above. Is there a way I can do this or do I need to have two separate apps. One for Android 2.1 and another for 2.2 and above.

Thanks for your help

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

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

发布评论

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

评论(1

你列表最软的妹 2024-10-28 07:51:18

不。
只需在 Manifest 编辑器中的“Manifest extras”中添加 use-sdk,然后仅将 minSdkVersion 属性设置为您选择的 API 版本。不要设置 Targetsdkversion。

这适用于我的应用程序。

我设置:

android:installLocation="auto"

并且

<uses-sdk android:minSdkVersion="7"/>

您可以在 Android 开发人员上找到所有这些信息指南

No.
Simply in the Manifest editor add the uses-sdk in "Manifest extras" and set only the minSdkVersion attribute to an API version of your choice. Don't set the Targetsdkversion.

This works for my apps.

I set:

android:installLocation="auto"

and

<uses-sdk android:minSdkVersion="7"/>

You can find all this information on the Android dev guide

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文