即使有 SIM 卡,应用程序也不会显示在各种平板电脑上

App not being showed to various tablets even if they have SIM card in them

我的 mainfest.xml 权限、功能和应用程序规范如下所示:

 <!-- To auto-complete the email text field in the login form with the user's emails -->
    <uses-permission android:name="android.permission.READ_PROFILE" />
    <uses-permission android:name="android.permission.READ_CONTACTS" />
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.CALL_PHONE" />
    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
    <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
    <permission
        android:name="pj.name.permission.C2D_MESSAGE"
        android:protectionLevel="signature" />
    <uses-permission android:name="pj.name.permission.C2D_MESSAGE" />
    <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" />

    <application
        android:name=".Volley.MyApplication"
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:screenOrientation="landscape"
        android:theme="@style/AppTheme">...........................
............................................
..


...</application>

>

我的build.grade(应用级别)默认配置是这样的:

defaultConfig {
        applicationId "pj.name"
        minSdkVersion 16
        targetSdkVersion 23
            versionCode 2016061714
        versionName "2.5.3"
    }

但是当我在 Playstore 中发布该应用程序时,这些应用程序对某些表不可见,包括 galaxy tab 4(其中有 SIM 卡 api 级别超过 16),但如果我直接在其中安装 apk,它在表中运行良好。

可能是什么原因?提前谢谢大家。

使自动对焦成为可选功能,我能够接触到 1900 多台设备,而标签就是其中之一。

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