昨天我在Google Play上发布了我的第一个应用程序。
从PC(使用Chrome)搜索Google Play时,我可以找到该应用
但是当我通过Android手机搜索Google Play时,找不到它。

在阅读了一些具有相同问题的帖子后,我将应用名称更改为更加独特,但仍然无法在我的Android手机Google Play上找到它。

是否知道为什么从PC浏览Google Play时发现该应用程序,而从我的手机设备搜索Google Play时却找不到该应用程序的想法?

编辑:
应用manifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="it.co.boom.acc_aid">

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-feature android:name="android.hardware.camera2.full" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

<application
    android:allowBackup="true"
    android:icon="@drawable/accident"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/Theme.AppCompat.DayNight.NoActionBar">
    <activity android:name=".getOfficeID"></activity>
    <activity
        android:name=".MainActivity"
        android:screenOrientation="portrait">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

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

</manifest>

最佳答案

这是我的2美分。可能有多种可能性。

1-不支持应用程序的设备上不显示应用程序。请检查清单XML文件。也许您已经在其中声明了某些特定功能是必需的,但您的设备上不可用,或者可能是其受支持的最低操作系统版本等。这是从Play控制台中查看排除列表中哪些设备的方法:View & restrict your app's compatible devices。从uses-feature引用


  Google Play使用您的应用清单中声明的​​元素从不符合其硬件和软件功能要求的设备上过滤您的应用。
  
  通过指定应用程序所需的功能,可以使Google Play仅向设备符合应用程序功能要求的用户显示应用程序,而不向所有用户显示该应用程序。


2-传播更改需要一些时间。您可以尝试清除Google Play应用的缓存/数据,然后尝试搜索。



更新资料

从您共享的清单中,我可以看到您声明了以下内容:


  <uses-feature android:name="android.hardware.camera2.full" />


不使用android:required属性。从android:required属性的文档中:


  如果未声明,则android:required的默认值为“ true”。


这意味着,如果设备不具备此功能,则它将不受支持,并且不会在该设备上的Play商店应用中显示该应用。可能就是这样。检查关于问题Google Play - Zero supported Devices, Not able to find app的以下答案。它可能有助于解决您的问题。

10-07 12:45
查看更多