由于清单设置,在蜂窝上不受支持

发布于 12-08 21:02 字数 367 浏览 1 评论 0原文

我正在尝试让我的应用程序在蜂窝设备市场上展示。我还没有设计特定于平板电脑的界面,因此我将目标 api 版本保留为 10,以便显示菜单按钮。我已经在模拟器中测试过,效果很好。

但是,开发人员控制台总是说由于我的清单设置,不支持蜂窝设备 - 我不确定为什么!

我的应用程序是开源的,因此您可以在此处查看清单: https ://github.com/jordan-thoms/2Degrees-Toolbox/blob/master/AndroidManifest.xml

I'm trying to get my application to show in the market on honeycomb devices. I'm not designing an tablet-specific interface yet, so I've left the target api version at 10 so that the menu button displays. I've tested in the emulator and it works fine.

However, the developer console always says that honeycomb devices are unsupported due to my manifest settings - and I'm not sure why!

My application is open source, so you can see the manifest here: https://github.com/jordan-thoms/2Degrees-Toolbox/blob/master/AndroidManifest.xml

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

荭秂2024-12-15 21:02:19

我认为这是因为您正在请求 SEND_SMS 权限。由于大多数平板电脑无法访问蜂窝网络,因此它们不会具有此功能,并且您的应用程序会将它们过滤掉。请参阅

I think it's because you are requesting the SEND_SMS permission. Since most tablets don't have access to a cellular network, they won't have this feature and your app will filter them out. See this.

蓝梦月影2024-12-15 21:02:19
<uses-feature android:name="android.permission.SEND_SMS" android:required="false" />
<uses-feature android:name="android.permission.SEND_SMS" android:required="false" />
葬心2024-12-15 21:02:19

我不确定,但我认为您应该添加此权限:---

<uses-feature android:name="android.hardware.telephony"
          android:required="true"/>

因为市场对任何不支持您的应用程序所需的硬件功能的 Android 设备隐藏您的应用程序。

我希望这有帮助。

I am not sure but I think you should add this permission:---

<uses-feature android:name="android.hardware.telephony"
          android:required="true"/>

Because Market hide your application from any android device that doesn’t support the hardware features your application requires.

I hope this help.

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