需要安卓版本

发布于 2024-12-07 07:12:14 字数 291 浏览 0 评论 0原文

我已经创建并在市场上发布了一个应用程序...... 然而,在市场页面上它说:“需要版本 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夢归不見 2024-12-14 07:12:14

在 AndroidManifest.xml 文件中,您需要包含 android:minSdkVersion 元素。例如,我的 AndroidManifest.xml 中有此内容:

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

请在此处查看更多详细信息: 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:

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

Have a look here for more details: http://developer.android.com/guide/topics/manifest/uses-sdk-element.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文