需要安卓版本
我已经创建并在市场上发布了一个应用程序...... 然而,在市场页面上它说:“需要版本 1.0”,而我知道它至少需要版本 2.0(级别 8),因为它使用谷歌地图。
我知道我必须在清单文件中包含如下内容: 我尝试将数字 1 更改为另一个数字,但如果这样做,应用程序会立即崩溃并显示以下消息:
android.view.InflateException: Binary XML file line #154: Error inflateing class
有人遇到过类似的事情吗?
谢谢
I have created and published an application on the market...
However, on the market page it says: "Version required 1.0" while I know it needs at least version 2.0 (level 8) as it uses google maps..
I know that I have to include in the manifest file something like this:
I have tried to change the number 1 for another, but if I do it, the app crashes straight away with the following message:
android.view.InflateException: Binary XML file line #154: Error inflating class
Has anybody came across something similar?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 AndroidManifest.xml 文件中,您需要包含
android:minSdkVersion
和
元素。例如,我的 AndroidManifest.xml 中有此内容:请在此处查看更多详细信息: http://developer.android.com/guide/topics/manifest/uses-sdk-element.html
In your AndroidManifest.xml file, you need to include
android:minSdkVersion
and<uses-sdk>
element. For example, I have this in my AndroidManifest.xml:Have a look here for more details: http://developer.android.com/guide/topics/manifest/uses-sdk-element.html