问题描述
我大约在 18 小时前将我的应用上传到了 google-play,但它没有显示出来.开发人员控制台显示已发布".我想它应该可以在 url https://play.google 查看.com/store/apps/details?id=com.khasbuu.firstaid 但它给了我 404 错误.我做错了什么?
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?
我的清单文件:
<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>
推荐答案
查看开发者控制台主页;确保它在右侧显示Published"(这在两种设计中都是相同的).如果它这样说,并且您的所有字段都有效(例如,如果您编辑它并点击保存,则不会显示任何错误),您可能只需要等待更长时间.我的应用程序通常会在 2 小时内推送,但我听说它需要长达 23 小时.我认为这与谷歌的服务器流量(有多少应用程序正在等待处理)以及其他因素有关.值得注意的是,点击发布后,该过程将完全自动化.
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.
这篇关于我的应用没有在 google play 中显示的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!