Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/202.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Android 我的应用与任何受支持的设备都不兼容_Android_Sdk - Fatal编程技术网

Android 我的应用与任何受支持的设备都不兼容

Android 我的应用与任何受支持的设备都不兼容,android,sdk,Android,Sdk,我在android Studio发布了一个android应用程序,但在Play Store上显示该应用程序与我的设备不兼容,我在许多不同android版本的android智能手机上试用过,但显示了相同的信息。 但我已经声明了最小SDk 15和目标SDk 23,但即使在目标SDk上也显示了相同的消息 截图是和 在游戏商店里,它告诉我们 支持的设备: 817 不支持的设备: 15314 我已在清单中添加此代码 <supports-screens android:anyDensi

我在android Studio发布了一个android应用程序,但在Play Store上显示该应用程序与我的设备不兼容,我在许多不同android版本的android智能手机上试用过,但显示了相同的信息。 但我已经声明了最小SDk 15和目标SDk 23,但即使在目标SDk上也显示了相同的消息

截图是和

在游戏商店里,它告诉我们 支持的设备: 817 不支持的设备: 15314

我已在清单中添加此代码

<supports-screens
        android:anyDensity="true"
        android:largeScreens="true"
        android:normalScreens="true"
        android:resizeable="true"
        android:smallScreens="false"
        android:xlargeScreens="true"

        />

    <compatible-screens>
        <screen
            android:screenDensity="ldpi"
            android:screenSize="small" />
        <screen
            android:screenDensity="mdpi"
            android:screenSize="normal" />
        <screen
            android:screenDensity="xhdpi"
            android:screenSize="large" />
        <screen
            android:screenDensity="xhdpi"
            android:screenSize="xlarge" />
    </compatible-screens>
这个代码有效吗

<compatible-screens>
    <!-- all small size screens -->
    <screen android:screenSize="small" android:screenDensity="ldpi" />
    <screen android:screenSize="small" android:screenDensity="mdpi" />
    <screen android:screenSize="small" android:screenDensity="hdpi" />
    <screen android:screenSize="small" android:screenDensity="xhdpi" />

    <!-- all normal size screens -->
    <screen android:screenSize="normal" android:screenDensity="ldpi" />
    <screen android:screenSize="normal" android:screenDensity="mdpi" />
    <screen android:screenSize="normal" android:screenDensity="hdpi" />
    <screen android:screenSize="normal" android:screenDensity="xhdpi" />

    <screen android:screenSize="large" android:screenDensity="ldpi" />
    <screen android:screenSize="large" android:screenDensity="mdpi" />
    <screen android:screenSize="large" android:screenDensity="hdpi" />
    <screen android:screenSize="large" android:screenDensity="xhdpi" />

    <screen android:screenSize="xlarge" android:screenDensity="ldpi" />
    <screen android:screenSize="xlarge" android:screenDensity="mdpi" />
    <screen android:screenSize="xlarge" android:screenDensity="hdpi" />
    <screen android:screenSize="xlarge" android:screenDensity="xhdpi" />

</compatible-screens>

我已经在清单中添加了此代码,有什么原因吗。。。如果您的设备是fx mdpi且较大,则将不兼容该应用程序已适用于普通和小型ldpi和mdpiNo,它适用于普通和mdpi或小型和ldpi或。。。等等,而不是外汇mdpi和大。。。从一开始,就不要使用支撑屏幕