【问题标题】:App not being showed to various tablets even if they have SIM card in them即使有 SIM 卡,应用程序也不会显示给各种平板电脑
【发布时间】:2016-06-17 09:40:19
【问题描述】:

我的 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,则在表格中。

可能是什么原因?在此先感谢各位。

【问题讨论】:

  • 他们有相机
  • 不是全部都没有吗?
  • 如果我添加 "required" = false 而不是自动对焦会更好吗?您认为它会适用于更多设备吗?

标签: android permissions google-play


【解决方案1】:

使自动对焦成为可选功能,我可以使用 1900 多台设备,其中包括选项卡。

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

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2015-02-05
    • 2013-03-10
    相关资源
    最近更新 更多