My app is not showing in google play [closed]
Asked Answered
C

4

0

I uploaded my app to google-play about 18 hours ago, but it is not showing up. Developer console is saying "Published". I guess it should be viewable at url https://play.google.com/store/apps/details?id=com.khasbuu.firstaid but it gives me 404 error. What am I doing wrong?

My manifest file:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.khasbuu.firstaid"
android:versionCode="3"
android:versionName="1.1" >

<uses-sdk
    android:minSdkVersion="4"
    android:targetSdkVersion="9" />

<uses-permission android:name="android.permission.SEND_SMS" />
<uses-permission android:name="android.permission.RECEIVE_SMS" />

<application
    android:icon="@drawable/app_icon"
    android:label="@string/app_name"
    android:theme="@android:style/Theme.Light.NoTitleBar" >
    <receiver android:name=".mongolcontent.SMSRemover" >
        <intent-filter android:priority="1">
            <action android:name="android.provider.Telephony.SMS_RECEIVED" />
        </intent-filter>
    </receiver>

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

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity android:name=".ShowChapterActivity" >
        <intent-filter>
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </activity>
    <activity android:name=".ShowContactActivity" >
        <intent-filter>
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </activity>
    <activity android:name=".DonationActivity" >
        <intent-filter>
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </activity>
    <activity android:name=".LikeActivity" >
        <intent-filter>
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </activity>

    <provider
        android:name=".providers.FirstAidProvider"
        android:authorities="com.khasbuu.firstaid" >
    </provider>
</application>

</manifest>
Crannog answered 24/8, 2012 at 4:45 Comment(3)
Was it approved by Google? I suppose they review it before letting you publish but I may be wrong.Deluge
i had the same issue..after long hours of research i found that i forgot to give title for the app in the developer console. this will help you thinkMallett
no there wont be any approval. If everything is fine, it will appear on Google play with in minutes.Familist
E
4

Check the Developer Console homepage; ensure that it says "Published" at the right (this is the same in both designs). If it says this, and all your fields are valid (as in, if you edit it, and hit Save, no errors are shown), you may just have to wait longer. My apps are usually pushed within 2 hours, but I've heard reports of it taking up to 23 hours. I think it just has to do with Google's server traffic (how many apps are waiting to be processed), and other factors as such. It's worth noting that the process is entirely automated once you hit Publish.

Edwards answered 24/8, 2012 at 5:2 Comment(8)
Yes, console is saying "Published" with green tick.Crannog
Fair enough, you may just have to wait it out. This user had to wait a full day for it to appear. Also, check under your developer name; it may appear there (there can be some caching issues for this type of situation).Edwards
At least that user's direct link is working. Mine is not :-/Crannog
It's working now because that was posted in October. What he's saying is that you can market your URL now (just double-check it), since it WILL work eventually.Edwards
In previous application I have used com.shine.xxx domain. Does it relate to the problem?Crannog
Nope. In one of mine I forgot to use the com. prefix, and my following applications have all been fine.Edwards
Waiting for 24 hours. Not accessible from browser and market on the phone.Crannog
I can access it just fine at this point: "First Aid in Mongolian", "Хэлж ирдэггүй хийсч ирдэг өвчин..."Edwards
I
1

I had a similar problem with my app. I could find it by the .apk file name without .apk but couldn't find it by the name in the title field. This was OK with this since it wasn't really ready for prime-time anyway. By version 2.0 I was ready for a bigger audience so this was no longer acceptable.

The solution was to have somebody download it to their phone and give it a 4 star or higher review. It was then searchable by title in Google Play within an hour.

It didn't have any reviews before that so a lower review might have worked also...

Impute answered 18/2, 2016 at 20:17 Comment(0)
U
0

Are you fetching contacts from user phone ? This is violating Google play agreement if you are fetching user contact without knowing user .I think this is the problem in your case

User answered 1/4, 2014 at 4:44 Comment(0)
P
0

As Eric said check whether you have moved your application to "Production", in pricing and distribution check whether you have selected countries, be careful about device compatibility and check whether you have excluded devices mistakenly, finally write app title and description related to your app properly.

Preinstruct answered 22/12, 2015 at 9:18 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.