【问题标题】:Android app is not listed when searched by name and the required permissions are not shown when downloading按名称搜索时未列出 Android 应用,下载时未显示所需权限
【发布时间】:2014-06-27 02:18:40
【问题描述】:

我刚刚在 google play 上发布了我的第一个 android 应用程序。即使应用程序被成功接受,我在通过 google play 列出和下载应用程序时仍然面临一些问题。

首先是下载应用程序时没有提及运行应用程序所需的权限,即使我在清单文件中添加了三个权限,如下所示。下载它说的应用程序时,下载该应用程序不需要特殊权限。

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

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

<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<application
    android:allowBackup="true"
    android:icon="@drawable/launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <meta-data
        android:name="com.google.android.gms.version"
        android:value="@integer/google_play_services_version" />

    <activity
        android:name="com.skydrive.examcountdown.ExamCountdownMain"
        android:label="@string/app_name"
        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>

第二个问题是,当我按应用名称搜索应用程序时,它没有列出。当然,我不希望它是第一个列出的应用程序,因为还没有下载。但它没有在结果中的任何地方列出。只有当我按包名称搜索时才会列出它。这正常吗?

提前谢谢你。

【问题讨论】:

    标签: android seo google-play


    【解决方案1】:

    发件人:https://stackoverflow.com/a/15903746/1239966

    搜索算法有点像一个黑盒子,在选择结果的顺序时会考虑很多因素,这就是为什么搜索您的确切应用程序名称并不总是会导致您的应用程序位于顶部(甚至靠近结果列表的顶部)。

    因此,请确保在描述中包含足够的详细信息,添加多个屏幕截图、视频以显示在排名较高的位置。此外,如果应用具有唯一名称,它会在搜索结果中显示得更高。

    关于权限,如果android在设备上安装应用程序时要求正确的权限,一切都很好。

    【讨论】:

    • 非常感谢您的回复。问题是我的应用程序的名称是“考试倒计时”。当应用程序按原样搜索时,它不会被列出。但是当中间没有空格作为一个词进行搜索时,就会列出来。这是什么原因。
    • 搜索不带空格时会列出,因为您的应用程序包名中包含“examcountdown”。
    猜你喜欢
    • 2020-03-30
    • 2021-03-16
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2020-03-05
    • 1970-01-01
    相关资源
    最近更新 更多