Android market publish problem
I just published my app and I can't find it on android market. Title is Nine Board TicTacToe.
This is from my deve开发者_Python百科loper console:
Supported Devices: This application is only available to devices with these features, as defined in your application manifest. Screen layouts: NORMAL LARGE XLARGE Required device features
android.hardware.wifi
android.hardware.telephony
android.hardware.touchscreen
This application is available to over 461 devices.
minSdkVersion is 1
package="alencaljkusic.nineboardtictactoe"
Any advice? Thanks
The best way to see your app instantly after publishing it is going to the Android Market online straight to your package: https://market.android.com/details?id=alencaljkusic.nineboardtictactoe
If you published it correctly you have to wait some minutes to let the changes to be done by the Android Market system.
It is NOT instant :)
My app shows that it supports a screen layout of SMALL, as well as NORMAL LARGE XLARGE.
Screen layouts: SMALL NORMAL LARGE XLARGE
Did you manually set up the supports-screens element in your AndroidManifest XML? If not, then the problem might be because your minSdkVersion
is set to 1. The supports-screens link above seems to suggest some of these features only came along in API version 4. I suggest you set your minSdkVersion
to 4 and retry.
One other tip: use the Browser on your device to search for your app in the Market. Once you've logged in, it will explicitly tell you if the app is supported for your device.
精彩评论