我的应用程序没有显示在谷歌播放 [英] My app is not showing in google play

查看:172
本文介绍了我的应用程序没有显示在谷歌播放的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我上传我的应用程序谷歌播放约18小时前,但它没有显示出来。开发者控制台说:出版。我想这应该是可见的网址 https://play.google .COM /存储/应用程序/详细信息?ID = com.khasbuu.firstaid ,但它给了我404错误。 我究竟做错了什么?

我的清单文件:

 <舱单的xmlns:机器人=htt​​p://schemas.android.com/apk/res/android
包=com.khasbuu.firstaid
安卓版code =3
机器人:VERSIONNAME =1.1>

<用途-SDK
    安卓的minSdkVersion =4
    机器人:targetSdkVersion =9/>

<使用-权限的Andr​​oid:名称=android.permission.SEND_SMS/>
<使用-权限的Andr​​oid:名称=android.permission.RECEIVE_SMS/>

<应用
    机器人:图标=@可绘制/ app_icon
    机器人:标签=@字符串/ APP_NAME
    机器人:主题=@安卓风格/ Theme.Light.NoTitleBar>
    <接收机器人:名称=。mongolcontent.SMSRemover>
        <意图过滤器的Andr​​oid版本:优先级=1>
            <作用机器人:名称=android.provider.Telephony.SMS_RECEIVED/>
        &所述; /意图滤光器>
    < /接收器>

    <活动
        机器人:名称=。FirstAidActivity
        机器人:标签=@字符串/ APP_NAME>
        <意向滤光器>
            <作用机器人:名称=android.intent.action.MAIN/>

            <类机器人:名称=android.intent.category.LAUNCHER/>
        &所述; /意图滤光器>
    < /活性GT;
    <活动机器人:名称=。ShowChapterActivity>
        <意向滤光器>
            <类机器人:名称=android.intent.category.DEFAULT/>
        &所述; /意图滤光器>
    < /活性GT;
    <活动机器人:名称=。ShowContactActivity>
        <意向滤光器>
            <类机器人:名称=android.intent.category.DEFAULT/>
        &所述; /意图滤光器>
    < /活性GT;
    <活动机器人:名称=。DonationActivity>
        <意向滤光器>
            <类机器人:名称=android.intent.category.DEFAULT/>
        &所述; /意图滤光器>
    < /活性GT;
    <活动机器人:名称=。LikeActivity>
        <意向滤光器>
            <类机器人:名称=android.intent.category.DEFAULT/>
        &所述; /意图滤光器>
    < /活性GT;

    <供应商
        机器人:名称=。providers.FirstAidProvider
        机器人:当局=com.khasbuu.firstaid>
    < /供应商>
< /用途>

< /舱单>
 

解决方案

检查开发者控制台网页;确保它说:发布在合适的(这是两种设计一样)。如果说这一点,所有的字段都有效(如,如果你编辑它,然后点击保存,没有错误显示),你可能只需要等待更长的时间。我的应用程序通常会在2小时内推,但我听说过它占用了23个小时的报告。我认为它只是做与谷歌的服务器的流量(多少应用程序正在等待处理),以及其他因素等。值得一提的是,这个过程是完全自动的,一旦你打发布。

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>

解决方案

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.

这篇关于我的应用程序没有显示在谷歌播放的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆