user591790
user591790

Reputation: 555

android market is not showing my published application

i have published android app but not appearing in android market.i m using android 2.2 and i have tried in samsung galaxy that is not showing my application so just give me some idea to fix this problem.

this is my manifest.xml file:

    <activity android:name=".Full"
    android:screenOrientation="landscape"
           android:label="@string/app_name">
           <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.SAMPLE_CODE" />
        </intent-filter>
    </activity>

    <activity android:name=".Short"
           android:label="@string/app_name">
           <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.SAMPLE_CODE" />
        </intent-filter>
    </activity> 

   </application>

Please help me..

Upvotes: 0

Views: 2727

Answers (2)

Ted Hopp
Ted Hopp

Reputation: 234795

Check your developer console for the market. Make sure that you see your app in the console and that it say "published" on the right. If that's all there, click on the app name to see the details and then expand the section on market filtering. It might explain there why your app may not be showing up on your galaxy tab.

Or, like @Tim says, you may just need to be patient. The market infrastructure for developers still has quite a few warts.

Upvotes: 1

FoamyGuy
FoamyGuy

Reputation: 46856

The android market appears to be experiencing some problems for many isers currently. Many people are unable to download anything from it. I would imagine that your problem is related to this. And i would guess it will be fixed tomorrow if not in a few hours or less.

Upvotes: 1

Related Questions