简体   繁体   中英

Why can't Honeycomb devices see this app on Android Market?

I can't work out why our app does not show up in Android Market to Honeycomb tablets - neither 3G nor wi-fi only ones. Here are the pertinent sections of the manifest:

<supports-screens
    android:smallScreens="false"
    android:normalScreens="true"
    android:largeScreens="true"
    android:xlargeScreens="true"
    android:anyDensity="true"/>

<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="10" />

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="com.android.vending.BILLING" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />

<uses-feature android:name="android.hardware.location" required="true" /> 
<uses-feature android:name="android.hardware.location.network" required="false" /> 
<uses-feature android:name="android.hardware.location.gps" required="false" />
<uses-feature android:name="android.hardware.wifi" required="false" /> 
<uses-feature android:name="android.hardware.telephony" required="false" /> 

Any ideas?

Switch all instances of "required" to "android:required". Those attributes are part of the Android xml namespace referenced at the top of your manifest as "xmlns:android="http://schemas.android.com/apk/res/android" :)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM