Google Play 未显示我的应用 [英] Google Play is not showing my app

查看:57
本文介绍了Google Play 未显示我的应用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我阅读了很多关于 stackoverflow 的帖子,还阅读了许多教程,例如 Vogella 和 theNewBoston,看看我在发布我的应用程序时犯了哪些错误.我导出了我的包的签名应用程序,创建了新的 apk 和密钥库.我相信现在不需要设置 debuggable = false .Eclipse 会自动执行此操作.我可以看到我的开发者控制台显示我的应用程序已发布,但是当我尝试在手机或电脑上搜索 google play 时,我找不到我的应用程序.如果我只使用包名来搜索我的应用程序,我就能找到它.我的应用程序仅适用于小型和普通屏幕手机,不适用于平板电脑.我尝试使用大量手机搜索该应用程序,但没有成功.这里附上我的清单.请告诉我如何解决这个问题.

I read many many posts on stackoverflow and I also went through many tutorials like Vogella and theNewBoston to see where am I making a mistake in publishing my app. I exported signed application of my package, created new apk and keystore. I believe that debuggable = false is not required to be set now. Eclipse automatically does that. I can see my developer console showing my app as published however when i try to search google play on either my phone or pc, i cannot find my app. If only i use package name to search for my app, i can find it. my app is developed only for small and normal screen phones and not for tablets. I tried searching the app using numerous phones with no luck. attached here is my manifest. please tell me how to go over this issue.

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.MyPackage"
    android:versionCode="2"
    android:versionName="1.1" >

    <uses-sdk
        android:minSdkVersion="11"
        android:targetSdkVersion="18" />

    <!-- These 4 lines have been added by user i.e me -->
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
    <!--
     The following two permissions are not required to use
     Google Maps Android API v2, but are recommended. added by me
    -->
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />

    <permission android:name="com.MyPackage.permission.MAPS_RECEIVE"
        android:protectionLevel="signature"></permission>

    <supports-screens
        android:anyDensity="true"
        android:normalScreens="true"
        android:resizeable="true"
        android:smallScreens="true" />

    <uses-feature
        android:glEsVersion="0x00020000"
        android:required="true" />

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

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.MyPackage.SplashScreen"
            android:label="@string/app_name"
            android:screenOrientation="portrait" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

        <meta-data
            android:name="com.google.android.maps.v2.API_KEY"
            android:value="API Key" />



    </application>

</manifest>

推荐答案

我的应用花了将近几天的时间才出现.请注意,如果您在 Play 商店中找不到您的应用,请尝试将名称放在双引号中,例如Park The Car"或Relationship Guru",然后搜索它.即使 Play 商店开始显示我的应用程序,如果我只使用不带双引号的应用程序名称进行搜索,我也找不到它.我看到了近 500 个应用程序,但仍然找不到我的应用程序.但是在使用双引号时,我得到了一个完美的字符串匹配.

It took almost couple of days for my app to show up. Just a small note, if you cannot find your app in the play store, try putting the name in double quotes like "Park The Car" or "Relationship Guru" and then search it. Even when Play store started showing my app, if I just search with the app name with no double quotes, I could not find it. I saw almost 500 apps and still I could not find my app. But on using double quotes, I got a perfect string match.

希望这会有所帮助.非常感谢您帮助我解决这个问题.

Hope this helps. Thanks a lot for helping me with this question.

这篇关于Google Play 未显示我的应用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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