Just uploaded Android App: How long before app shows in Android Market search?

AndroidGoogle Play

Android Problem Overview


I've just uploaded a new app to the android market. However when I try to download it to my phone through the Android market, it doesn't appear!

Please can someone with knowledge of this let me know how I can get my app to appear in the search results.

Android Solutions


Solution 1 - Android

It does instantly show up in the market, but it may take a while for it to become searchable. You can access your market page instantaneously by going to the following page:

> https://play.google.com/store/apps/details?id=[your app package name]

e.g.: https://play.google.com/store/apps/details?id=com.speedplane.androidvideoapp

Solution 2 - Android

It might take a bit of time. While it's supposed to be instantaneous, that's not always the case. Once I had to wait a couple of hours for it to show up on my phone (but I believe that was abnormal behavior).

Don't forget to check the Android Manifest file as @chiranjib mentioned as well.

Solution 3 - Android

This should be instantaneous (at least it usually is for me). Is the app not offered to you at all? Could one of your settings in AndroidManifest.xml prevent it from being offered to you by the market?

Solution 4 - Android

Check the Android manifest file with the following properties

<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="19"  />
<supports-screens  android:largeScreens="true"   android:normalScreens="true"  android:smallScreens="true"/> 

Refer to the following link http://www.google.com/support/forum/p/Android+Market/thread?tid=5fae654e5bf022c2&hl=en

Solution 5 - Android

I think you will find your answer here (discussion about your problem) : http://www.google.com/support/forum/p/Android+Market/thread?tid=3bb960d59eba7d04&hl=en

Solution 6 - Android

https://play.google.com/store/search?q=[yourapp]

try this, the old search engine doesn't work anymore.

Mine is showing up on there, but not on my phone yet. I guess its a waiting game.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionEamorrView Question on Stackoverflow
Solution 1 - AndroidspeedplaneView Answer on Stackoverflow
Solution 2 - AndroidgoncalossilvaView Answer on Stackoverflow
Solution 3 - AndroidHeiko RuppView Answer on Stackoverflow
Solution 4 - AndroidchiranjibView Answer on Stackoverflow
Solution 5 - AndroidDalmasView Answer on Stackoverflow
Solution 6 - AndroidpolyrhythmmView Answer on Stackoverflow