【问题标题】:Application is not available in Google Play Store for some devices某些设备的应用程序在 Google Play 商店中不可用
【发布时间】:2014-01-26 15:49:47
【问题描述】:

我的应用程序确实出现在 Google Play 中,适用于除三星平板电脑 3 之外的所有设备。

我的清单权限:

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

        <uses-permission android:name="android.permission.INTERNET" />
        <uses-permission android:name="android.permission.WAKE_LOCK" />
        <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
        <uses-permission android:name="android.permission.SET_WALLPAPER" />
        <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
        <uses-permission android:name="android.permission.CALL_PHONE" />
        <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
        <uses-permission android:name="android.permission.MANAGE_ACCOUNTS" />
        <uses-permission android:name="android.permission.CAMERA" />

        <uses-feature android:name="android.hardware.camera" />
        <uses-feature android:name="android.hardware.camera.autofocus" />
        <uses-feature
            android:name="android.hardware.telephony"
            android:required="false" >
    </uses-feature>

我需要更改这些权限吗?

当我添加 apk 时,我可以看到我使用了这些功能:

android.hardware.CAMERA

android.hardware.camera.AUTOFOCUS

android.hardware.LOCATION

android.hardware.location.GPS

android.hardware.screen.LANDSCAPE

android.hardware.screen.PORTRAIT

android.hardware.TOUCHSCREEN

问题:当我从三星平板电脑 3 搜索应用程序表单时,Google Play 应用程序在此设备的 Google Play 商店中不可用。

【问题讨论】:

  • 我不确定您的平板电脑是否支持android.hardware.telephony
  • 我在 android.hardware.telephony 中添加了 android:required="false",这样可以解决问题吗?

标签: android


【解决方案1】:

我会说问题是平板电脑是否具有自动对焦功能。我使用的最后几款三星平板电脑没有自动对焦功能。

【讨论】:

    【解决方案2】:

    有些设备没有 gps 功能,所以如果您的应用使用 gps,应用商店会认为它在某些不具备所需功能的设备上没有用。

    【讨论】:

      【解决方案3】:

      确实是 Manifest 权限

      android.hardware.camera.AUTOFOCUS android.hardware.location.GPS

      如果设备没有自动对焦或没有 GPS 功能,则不会在 google play 中显示。

      【讨论】:

        猜你喜欢
        • 1970-01-01
        • 2020-06-14
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 2019-06-01
        • 1970-01-01
        • 2014-05-23
        相关资源
        最近更新 更多