0

大约 18 小时前,我将我的应用程序上传到了 google-play,但它没有显示出来。开发人员控制台显示“已发布”。我想它应该可以在网址https://play.google.com/store/apps/details?id=com.khasbuu.firstaid上查看,但它给了我 404 错误。我究竟做错了什么?

我的清单文件:

<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>
4

4 回答 4

4

检查开发者控制台主页;确保它在右侧显示“已发布”(这在两种设计中都是相同的)。如果它这样说,并且您的所有字段都有效(例如,如果您编辑它并点击保存,则不会显示任何错误),您可能只需要等待更长时间。我的应用程序通常会在 2 小时内推送,但我听说它需要长达 23 小时。我认为这与谷歌的服务器流量(有多少应用程序正在等待处理)以及其他因素有关。值得注意的是,一旦您点击发布,该过程就会完全自动化。

于 2012-08-24T05:02:21.547 回答
1

我的应用程序也有类似的问题。我可以通过没有 .apk 的 .apk 文件名找到它,但无法通过标题字段中的名称找到它。这没关系,因为它还没有真正准备好迎接黄金时段。到了 2.0 版,我已经为更多的观众做好了准备,所以这不再是可以接受的了。

解决方案是让某人将其下载到他们的手机上并给予 4 星或更高的评价。然后在一小时内就可以在 Google Play 中按标题进行搜索。

在此之前它没有任何评论,因此较低的评论可能也有效......

于 2016-02-18T20:17:47.490 回答
0

您是否正在从用户电话中获取联系人?如果您在不知道用户的情况下获取用户联系人,这违反了 Google Play 协议。我认为这是您的问题

于 2014-04-01T04:44:47.363 回答
0

正如 Eric 所说,检查您是否已将您的应用程序移至“生产”,在定价和分发中检查您是否选择了国家,注意设备兼容性并检查您是否错误地排除了设备,最后写下与您的应用程序相关的应用程序标题和描述适当地。

于 2015-12-22T09:18:24.623 回答