由于清单设置,在蜂窝上不受支持
我正在尝试让我的应用程序在蜂窝设备市场上展示。我还没有设计特定于平板电脑的界面,因此我将目标 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 技术交流群。
发布评论
评论(3)
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我认为这是因为您正在请求
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.