1

所以每当我添加

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

我的应用程序拒绝正常工作。用户界面是微型的(字体小,按钮比平时小)。我尝试将 minversion 从 7-15 更改,但没有一个起作用。我的手机是 4.0.4 每次我拿出

<uses-sdk android:minSdkVersion> 

它完美地工作。可悲的是谷歌市场需要这个,我不能上传应用程序不起作用。有任何想法吗?如果我需要提供更多信息,请询问,非常感谢!

该应用程序主要是一个XML应用程序,没有图形界面,只有原生按钮等。我正在使用Theme.Holo.Light主题。谢谢!

4

1 回答 1

0

The easy fix is likely to set minSdkVersion to 1; this should give you the same behavior as leaving it out, but allow you to upload your app to the Play store.

The better solution would be to set it to an appropriate value based on what APIs you use and testing it on various devices, and adjust your layouts to work appropriately.

于 2012-07-11T21:41:03.003 回答