简体   繁体   English

按名称搜索时未列出Android应用,下载时未显示所需权限

[英]Android app is not listed when searched by name and the required permissions are not shown when downloading

I just published my first android application to google play. 我刚刚将我的第一个Android应用程序发布到了Google Play。 Even though the application was successfully accepted, i'm still facing couple of problems when listing and downloading app through the google play. 即使该应用程序已成功被接受,但在通过Google Play列出和下载应用程序时,我仍然面临一些问题。

First of them is that the permissions required to run the application is not mentioned when downloading the app even though i have added three permissions in the manifest file as shown below. 首先,即使我在清单文件中添加了三个权限,在下载应用程序时也没有提及运行该应用程序所需的权限,如下所示。 When downloading the app it says, no special permissions are required to download the application. 下载该应用程序时,它说,不需要特殊权限即可下载该应用程序。

<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>

The second question is that when i search the application by app name, it is not listed. 第二个问题是,当我按应用名称搜索应用时,未列出该应用。 Of course i don't expect it to be the first app that is listed since, there are no downloads yet. 当然,我不希望它成为列出的第一个应用程序,因为还没有下载。 But it is not listed anywhere within the results. 但是它没有在结果中的任何地方列出。 Its get listed only when i search by the package name. 仅当我按软件包名称搜索时,它才会列出。 Is this normal? 这正常吗?

Thank you in advance. 先感谢您。

From : https://stackoverflow.com/a/15903746/1239966 来自: https : //stackoverflow.com/a/15903746/1239966

The search algorithm is somewhat of a black box, it takes many things into consideration when picking the order of results which is why a search for your exact application name will not always result in your app being at the top (or even near the top) of the list of results. 搜索算法有点像黑匣子,在选择结果顺序时会考虑很多因素,这就是为什么搜索您确切的应用程序名称并不总是导致您的应用程序位于顶部(甚至接近顶部)的原因结果列表。

So, please make sure to include enough details in description, add multiple screenshots, videos to show up higher in the ranking. 因此,请确保在说明中包含足够的详细信息,添加多个屏幕截图和视频,以使其在排名中显示更高。 Also, if the app has a unique name, it'll show up higher in the search results. 另外,如果该应用具有唯一的名称,它将在搜索结果中显示较高的位置。

Regarding permissions, if android asks for correct permissions when installing the app on the device, everything is fine. 关于权限,如果android在设备上安装应用时要求正确的权限,一切都很好。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 在 PlayStore 上按名称或包名搜索 Android 应用程序时不显示 - Android App is not shown when searched by name or package name on PlayStore 在Android Market(Google Play)上使用应用名称搜索时,应用不显示 - App does not display when searched with the app name on Android Market (Google Play) Facebook ShareDialog-从Android APP发布时未显示名称和描述 - Facebook ShareDialog - Name and Description not shown when posted from Android APP 从Chrome应用搜索时,Android应用索引无法正常工作 - Android app indexing not working when searched from chrome app 向用户显示的Android应用权限 - Android app permissions as shown to user 数据库中不存在搜索值时,Android应用程序崩溃 - Android app is crashing when value searched doesn't exist in database 搜索时未显示 Play 商店中的 Android 应用(生产中) - Android app (in production) on play store not showing when searched 下载文件时,Android应用会不定期地冻结 - Android app freezes irregularly when downloading files Android 应用程序在安装时不要求权限 - Android App not asking for permissions when installing Android 请求运行时权限时应用程序退出 - Android App exits when request Runtime Permissions
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM