Android 从play store获取错误-“;此应用程序与您的所有设备不兼容;

Android 从play store获取错误-“;此应用程序与您的所有设备不兼容;,android,ionic,apk,Android,Ionic,Apk,我已经构建了我的应用程序,并在emulator中进行了测试。我自己的设备也是。但是,当我将APK文件上传到PlayStore时,我得到了一个错误- “此应用程序与您的所有设备不兼容” 我将我的支持屏幕标签更改为: <supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:resizeable="true" android:small

我已经构建了我的应用程序,并在emulator中进行了测试。我自己的设备也是。但是,当我将APK文件上传到PlayStore时,我得到了一个错误-

此应用程序与您的所有设备不兼容

我将我的
支持屏幕
标签更改为:

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

这是我的第一个应用程序,我是用爱奥尼亚公司(ionic)开发的。我不知道如何处理安卓系统。猜猜会有什么问题,为什么它说我的设备不兼容?

最后,我解决了这个问题。问题来自我们这边。事实上,我正在用爱奥尼亚公司(ionic)的人行横道。所以,我得到了2个APK上传到Play Store。A第二,这里的问题是,如果你有多个APK,那么在Google Play控制台中,你需要从我之前不知道的“标准模式”切换到“高级模式”。因此,我一直在尝试以标准模式上传我的2个APK&这就是为什么Google Play store端出现故障/缺失的原因&我收到了那个错误

但是,现在在通过高级模式上传这些APK之后,错误已经修复


无论如何,谢谢你的帮助。我真的很感激。

你的设备的Android版本是什么?试着从你的
AndroidManifest.xml
中完全删除
supports screens
标签。我有Nexus 5&它里面有Android M。我也有同样的问题。你能解释一下怎么做吗?
<supports-screens android:smallScreens="false" />
<?xml version='1.0' encoding='utf-8'?>
<manifest android:hardwareAccelerated="true" android:versionCode="2" android:versionName="0.0.2" package="com.ionicframework.esp132862" xmlns:android="http://schemas.android.com/apk/res/android">
    <supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:resizeable="true" android:smallScreens="true" android:xlargeScreens="true" />
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
    <application android:hardwareAccelerated="true" android:icon="@drawable/icon" android:label="@string/app_name" android:supportsRtl="true">
        <activity android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale" android:label="@string/activity_name" android:launchMode="singleTop" android:name="MainActivity" android:theme="@android:style/Theme.Black.NoTitleBar" android:windowSoftInputMode="adjustResize">
            <intent-filter android:label="@string/launcher_name">
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
    <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="22" />
</manifest>