开发者

Unsupported on honeycomb due to manifest settings

开发者 https://www.devze.com 2023-04-11 13:08 出处:网络
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 di

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 alw开发者_StackOverflow社区ays 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


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.


<uses-feature android:name="android.permission.SEND_SMS" android:required="false" />


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号