简体   繁体   English

该应用程序在某些设备上无法在Google Play商店中使用

[英]Application is not available in Google Play Store for some devices

My application does appear in google play for all devices except Samsung Tablet 3. 我的应用程序确实会在Google Play上针对除Samsung Tablet 3之外的所有设备出现。

My manifest permissions: 我的清单权限:

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

Do i need to change those permission? 我需要更改那些许可吗?

When i add the apk, i can see that i use those features: 当我添加apk时,我可以看到我使用了以下功能:

android.hardware.CAMERA android.hardware.CAMERA

android.hardware.camera.AUTOFOCUS android.hardware.camera.AUTOFOCUS

android.hardware.LOCATION android.hardware.LOCATION

android.hardware.location.GPS android.hardware.location.GPS

android.hardware.screen.LANDSCAPE android.hardware.screen.LANDSCAPE

android.hardware.screen.PORTRAIT android.hardware.screen.PORTRAIT

android.hardware.TOUCHSCREEN android.hardware.TOUCHSCREEN

The problem: When i search the app form google play application from my Samsung Tablet 3 is that the app is not available in Google Play Store for this device. 问题:当我从三星Tablet 3搜索应用程序形式的Google Play应用程序时,该应用程序在Google Play商店中不可用。

I would say the question is if the tablet has AutoFocus. 我想说的是,平板电脑是否具有AutoFocus。 The last few Samsung Tablets I was on did not have Autofocus. 我使用的最后几台三星平板电脑没有自动对焦功能。

某些设备没有gps功能,因此,如果您的应用使用gps,则appstore会假定它在某些不具备所需功能的设备上无用。

Its truely the Manifest Permission 确实是清单许可

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

If the device has no autofocus or no GPS funktion its not displayed in google play. 如果设备没有自动对焦或GPS功能,则不会在Google Play中显示。

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

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM