支持 Android 2.1 和 Apps2SD 的应用程序
我目前有一个设置为支持 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不。
只需在 Manifest 编辑器中的“Manifest extras”中添加 use-sdk,然后仅将 minSdkVersion 属性设置为您选择的 API 版本。不要设置 Targetsdkversion。
这适用于我的应用程序。
我设置:
并且
您可以在 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:
and
You can find all this information on the Android dev guide