如何支持设备1.6及更高版本? [英] How to support devices 1.6 and up?

查看:92
本文介绍了如何支持设备1.6及更高版本?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我刚刚开始开发Android应用程序,我想知道从一开始就这一权利。
很显然,如果你用API 13(3.2)的工作也没关系,你仍然可以支持Android 1.6。真的吗?

I've just started developing android apps and I am wondering about this right from the start. Apparently it doesn't matter if you work with API 13 (3.2), you can still support Android 1.6. Is that true?

有关AdMob的工作,我不得不开始使用API​​的13个工作,并建立

For AdMob to work, I had to start working with API 13 and have set

target=android-13

有人请澄清这或点我的地方阅读。

Someone please clarify this or point me somewhere to read it.

推荐答案

在您的清单文件,你可以把你想要支持的最小SDK版本和你的目标SDK版本,他们可能是不同的,以支持1.6指定安卓的minSdkVersion =4如下

In your Manifest file you can put the min sdk version you want to support and your target sdk version, they could be different, to support 1.6 specify android:minSdkVersion="4" as follows

<manifest xmlns:android="http://schemas.android.com/apk/res/android">
    <uses-sdk android:minSdkVersion="4" android:targetSdkVersion="13" />

这篇关于如何支持设备1.6及更高版本?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆