【问题标题】:Getting error from play store - “This app is incompatible with all of your devices.”从 Play 商店收到错误 - “此应用与您的所有设备都不兼容。”
【发布时间】:2015-11-19 11:37:50
【问题描述】:

我已经构建了我的应用程序,也在模拟器中进行了测试。我自己的设备也是。但是,当我将该 APK 文件上传到 PlayStore 时,我遇到了错误 -

此应用与您的所有设备都不兼容。”

我将我的 supports-screens 标签更改为:

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

<supports-screens android:smallScreens="false" />

还是不行。

这是我的AndroidManifest.xml

<?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>

这是我的第一个应用程序,我使用 ionic 构建了它。我不知道如何处理Android。猜猜可能是什么问题,为什么说它与我的设备不兼容?

【问题讨论】:

  • 您设备的 Android 版本是多少?尝试从您身上完全删除supports-screens 标签AndroidManifest.xml
  • 我有 Nexus 5,里面有 Android M。

标签: android ionic apk


【解决方案1】:

最后,我解决了这个问题。问题出在我们这边。实际上,我正在使用带有 Ionic 的 Crosswalk。所以,我得到了 2 个 APK 来上传到 Play 商店。而且,这里的问题是,如果您有多个 APK,那么在 Google Play 控制台中,您需要从我之前不知道的“标准模式”切换到“高级模式”。因此,我一直在尝试以标准模式上传我的 2 APK,这就是为什么 Google Play 商店方面出现问题/丢失的原因,我遇到了该错误。

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

无论如何,谢谢,您为帮助我所做的一切努力。我真的很感激。

【讨论】:

  • 我也有同样的问题。你能解释一下怎么做吗?
猜你喜欢
  • 1970-01-01
  • 2018-07-30
  • 2017-08-25
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多