应用程序在Google Play中不可见,即使应用程序的直接链接无效

时间:2012-10-25 09:38:02

标签: android google-play

我的应用未显示在Google Play Market中。 我已经通过开发者控制台发布了。 但是即使在https://play.google.com/store/apps/details?id=not.visible.app上也看不到该应用程序(这只是用于说明问题的假包装)

不确定为什么它不起作用。这是我的清单文件:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="not.visible.app"
android:versionCode="1"
android:versionName="1.0" >

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

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

<application
    android:icon="@drawable/ic_launcher"
    android:label="@string/Fake">
    <activity android:name=".LoginActivity" android:theme="@android:style/Theme.NoTitleBar">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity android:name=".MainMenuActivity"  android:theme="@android:style/Theme.NoTitleBar"></activity>
</application>

请帮忙。

2 个答案:

答案 0 :(得分:1)

我不知道是否需要,但您应该将屏幕支持放在清单上,例如:

<supports-screens android:normalScreens="true" android:xlargeScreens="true" android:largeScreens="true" android:smallScreens="true"></supports-screens>

但是要在Play商店看到你的应用,你应该等待2/3小时。

答案 1 :(得分:0)

在您的应用程序显示在市场中之前,您需要花费几个小时的时间。你什么时候上传的?