Android 市场 - 应用程序不可见

发布于 2025-01-06 19:35:42 字数 3461 浏览 4 评论 0原文

大家好

我在这里请求您对此事的支持,因为仅仅一个应用程序可见性问题就毁掉了大约一年的开发。

我们开发了一款名为 Fantasy Racing 的游戏,几天前已在 Android Market 的赛车类别下发布,但根本看不到该游戏。

这个问题已经出现在我们过去开发的另一个简单游戏上,但我们并没有太关注它,因为我们的努力很小,现在,这个应用程序是我们迄今为止最大的努力,因此,我需要解决这个问题。

该应用程序是:

  • 在发布者配置文件的应用程序列表中可见
  • 如果您按名称搜索,则

可以找到 该应用程序在以下位置不可见:

  • 一般类别游戏

  • 类别游戏/赛车,赛车游戏大约有20页,我可以找到“情人节快乐”和“愤怒的小鸟”等游戏,但没有我的游戏,甚至在最后位置

  • 我们检查了几乎所有部分,但该游戏没有在任何地方列出.

Android 市场支持通过自动机器人进行响应。

我们很绝望。

我认为这可能取决于 android 清单文件配置。

如果您能帮助我找出其中的任何问题,我将非常感谢:

<?xml version="1.0" encoding="utf-8"?>

<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<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="android.permission.READ_PHONE_STATE" />

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

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

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

<application
    android:icon="@drawable/icon"
    android:label="@string/app_name" >
    <meta-data
        android:name="ADWHIRL_KEY"
        android:value="adda8faafddd4e08be96b61a98ad0e3b" />

    <activity
        android:name="org.teamnovasoft.racegame.gameactivity.IntroSplashScreen"
        android:configChanges="orientation|keyboardHidden"
        android:screenOrientation="landscape"
        android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name="org.teamnovasoft.racegame.gameactivity.MainActivity"
        android:configChanges="orientation|keyboardHidden"
        android:screenOrientation="landscape"
        android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </activity>
    <activity
        android:name="com.google.ads.AdActivity"
        android:configChanges="keyboard|keyboardHidden|orientation" >
    </activity>
    <activity
        android:name="com.millennialmedia.android.MMAdViewOverlayActivity"
        android:theme="@android:style/Theme.Translucent.NoTitleBar" >
    </activity>
    <activity
        android:name="com.millennialmedia.android.VideoPlayer"
        android:configChanges="keyboardHidden|orientation|keyboard"
        android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
    </activity>
</application>

编辑:游戏使用 2 个使用 Android NDK 的本机库。我不知道这是否相关:(

Hello everybody

I am here to ask your kind support on this matter since it is ruining about 1 year of development for just an application visibility problem.

We have developed a game called Fantasy Racing which has been published few days ago on the Android Market under the racing category but the game is not visible at all.

This problem already occurred on another simple game we have developed in the past but we didn't focus much on it since the efforts were minimal, now, this application is our biggest effort so far hence, I need to resolve this issue.

The application is:

  • Visible in the list of the applications of the publisher profile
  • Found if you search by name

The application is not visibile in:

  • Category Games in general

  • Category Games/Racing, there are about 20 pages of racing game and I can find games such as "happy s. valentine" and "Angry birds" but not my game, even at the last position

  • We checked almost all the sections and the game is not listed anywhere.

The android market support responds with an automatic bot.

We are desperate.

I think it could be depending on the android manifest file configuration.

I would really thank you if you could help me to identify any problem on it:

<?xml version="1.0" encoding="utf-8"?>

<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<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="android.permission.READ_PHONE_STATE" />

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

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

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

<application
    android:icon="@drawable/icon"
    android:label="@string/app_name" >
    <meta-data
        android:name="ADWHIRL_KEY"
        android:value="adda8faafddd4e08be96b61a98ad0e3b" />

    <activity
        android:name="org.teamnovasoft.racegame.gameactivity.IntroSplashScreen"
        android:configChanges="orientation|keyboardHidden"
        android:screenOrientation="landscape"
        android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name="org.teamnovasoft.racegame.gameactivity.MainActivity"
        android:configChanges="orientation|keyboardHidden"
        android:screenOrientation="landscape"
        android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </activity>
    <activity
        android:name="com.google.ads.AdActivity"
        android:configChanges="keyboard|keyboardHidden|orientation" >
    </activity>
    <activity
        android:name="com.millennialmedia.android.MMAdViewOverlayActivity"
        android:theme="@android:style/Theme.Translucent.NoTitleBar" >
    </activity>
    <activity
        android:name="com.millennialmedia.android.VideoPlayer"
        android:configChanges="keyboardHidden|orientation|keyboard"
        android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
    </activity>
</application>

EDIT: The game uses 2 native libraries using Android NDK. I don't know if it is relevant or not :(

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

静赏你的温柔 2025-01-13 19:35:42

您应该降低应用程序清单文件中的 API 级别。

我的情况是:

1. I compiled my apk with API level 10
2. I browsed Google Play from Google Account that have only device that supports API level 6 applications.

所以我遇到了这样的情况:我的应用程序在我的帐户中不可见,因为它已被过滤。

You should decrease API level in application manifest file.

My situation was:

1. I compiled my apk with API level 10
2. I browsed Google Play from Google Account that have only device that supports API level 6 applications.

So I had situation when my application wasn't visible from my account, because it was filtered.

懷念過去 2025-01-13 19:35:42

可能有 2 种可能性:

  • 对于我的应用程序,需要几天时间,大约 1 周。
  • Google Play 只是不显示市场上的所有应用程序。您可能需要通过增加下载量来推广它才能在列表中显示。

There might be 2 possibilities:

  • take a couple of days, for my app, around 1week.
  • Google Play just do not show all the apps in the market. You may need promote it by increasing downloads to get is shown in the list.
淡淡の花香 2025-01-13 19:35:42

抱歉回复晚了。

原因是谷歌的索引系统发布该应用程序只是时间问题。

过去,当每日应用程序发布的数量要少得多时,我习惯于更快地响应市场。现在,市场已被申请淹没,这需要更长的时间来处理新来者。

如果它确实发生在你身上,那取决于时间。

另一个可能的解释是清单配置,它可以过滤您的设备以显示产品,但这不是我的情况。

这绝对与应用程序的推广无关。

Sorry for the late reply.

The reason was only a matter of time before the indexing system of Google has published the application.

I was habit to a faster response from the market in the old days when the number of daily application releases was much lower. Now, the market is overwhelmed by applications and this require a longer time to process newcomers.

If it does happen to you, it depends on time.

Another possible explanation would be the manifest configuration which could filter your device from displaying the product but this was not my case.

It is definitively non related to the promoting of the app.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文