如何更改“需要 Android”安卓市场版本
我在android市场发布了一个应用程序
奇怪的是,尽管它使用谷歌地图,但在市场上它说: 需要安卓: 1.0 及更高版本
如何更改此设置而不弄乱清单文件?有办法吗?
我一直在更改 android:minSdkVersion,目前为 1,但我的代码在奇怪的地方受到影响,意外崩溃,布局也发生了变化,
有什么想法吗? 谢谢!!
I have published an app in the android market
Strangely, even though it uses google maps, in the market it says:
Requires Android:
1.0 and up
How can I change this without messing with the manifest file? is there a way?
I have been changing the android:minSdkVersion which currently is 1, but my code is affected in strange places, crashing unexpectedly and the layouts are changed too
any ideas?
Thanks!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我相信你已经回答了你自己的问题。
在清单中控制显示的字段。
I believe you have answered your own question.
In your manifest controls that displayed field.
要使用地图,您还需要设置 API 级别和 SDK >= 3
也许这就是你崩溃的原因?!
To work with maps you also need to set API Level and SDK >= 3
maybe is that the reason of your crashes?!
Android API 级别对应于 Android 的不同版本。例如,Android 1.5(地图的最低要求)是 API 级别 3。最低 API 级别在清单中声明如下:
Android API levels correspond to the different releases of Android. For example, Android 1.5 (the minimum required for Maps) is API level 3. The minimum API Level is declared in the manifest as following: