Android 我在安卓系统中的应用程序在某些平板电脑的google play中不显示

Android 我在安卓系统中的应用程序在某些平板电脑的google play中不显示,android,google-play,android-manifest,Android,Google Play,Android Manifest,我的平板电脑和我在google play中的应用程序有问题,我的应用程序在我的平板电脑中运行良好,但当尝试从google play安装时,我的应用程序不会显示 My manifiest.xml: <uses-sdk android:minSdkVersion="11" /> <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> <uses-permission and

我的平板电脑和我在google play中的应用程序有问题,我的应用程序在我的平板电脑中运行良好,但当尝试从google play安装时,我的应用程序不会显示

My manifiest.xml:

 <uses-sdk android:minSdkVersion="11" />

<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

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

<supports-screens
    android:smallScreens="true"
    android:normalScreens="true"
    android:largeScreens="true"
    android:xlargeScreens="true"
    android:anyDensity="true"/>
有什么问题吗?有什么想法吗


注意:我的平板电脑是BQ EDISON 2 QC

您的平板电脑是哪一个android版本?该版本是android 4.2 Jelly Bean。您可以将多个APK上传到Play Store,而不是提交给生产部门,以查看显示更改内容以及是否支持更多或更少设备的对话框。但这可能是自动对焦的问题。另外,如果你支持所有的屏幕,为什么你会有一个支持屏幕标签呢?嗨,为了解决我的问题,我读了很多论坛,尝试了很多东西,支持屏幕标签是我最后尝试解决的东西之一,但没有成功。
sdkVersion:'7'
targetSdkVersion:'16'
uses-permission:'android.permission.ACCESS_FINE_LOCATION'
uses-permission:'android.permission.CAMERA'
uses-permission:'android.permission.INTERNET'
uses-permission:'android.permission.WRITE_EXTERNAL_STORAGE'
uses-feature-not-required:'android.hardware.camera'
uses-feature-not-required:'android.hardware.camera.autofocus'
uses-feature-not-required:'android.hardware.location.gps'
uses-feature-not-required:'android.hardware.location.network'
uses-feature-not-required:'android.hardware.location'
application-icon-160:'res/drawable-mdpi/ic_launcher.png'
application-icon-240:'res/drawable-hdpi/ic_launcher.png'
application-icon-320:'res/drawable-xhdpi/ic_launcher.png'
application-icon-480:'res/drawable-xxhdpi/ic_launcher.png'
uses-permission:'android.permission.READ_EXTERNAL_STORAGE'
uses-implied-permission:'android.permission.READ_EXTERNAL_STORAGE','requested WRITE_EXTERNAL_STORAGE'
uses-feature:'android.hardware.touchscreen'
uses-implied-feature:'android.hardware.touchscreen','assumed you require a touch screen unless explicitly made optional'
uses-feature:'android.hardware.screen.landscape'
uses-implied-feature:'android.hardware.screen.landscape','one or more activities have specified a landscape orientation'
main
other-activities
supports-screens: 'small' 'normal' 'large' 'xlarge'
supports-any-density: 'true'
locales: '--_--' 'en'
densities: '160' '240' '320' '480'