无法在用于开发的同一设备上从 Play 商店安装 Beta 版应用

Can't install beta app from Play Store on the same device that was used for development

我已将我的应用程序上传到 Google Play,但我看到“您的设备与此版本不兼容”消息。我见过许多其他类似的问题,但我的情况似乎很独特:我在用于开发的同一台设备上收到此消息。

这是我的清单文件:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="io.mindworks.foodforyou">

    <!-- To auto-complete the email text field in the login form with the user's emails -->
    <uses-permission android:name="android.permission.GET_ACCOUNTS" android:required="false" />
    <uses-permission android:name="android.permission.READ_PROFILE" android:required="false" />
    <uses-permission android:name="android.permission.READ_CONTACTS" android:required="false" />
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" android:required="false" />
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" android:required="false" />
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" android:required="false" />

    <uses-feature android:glEsVersion="0x00020000" android:required="false"/>

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <meta-data
            android:name="com.facebook.sdk.ApplicationId"
            android:value="@string/facebook_app_id" />
        <meta-data
            android:name="com.google.android.gms.version"
            android:value="@integer/google_play_services_version" />

        <activity
            android:name=".ui.LoginActivity"
            android:label="@string/title_activity_login" />
        <activity
            android:name="com.facebook.FacebookActivity"
            android:configChanges="keyboard|keyboardHidden|screenLayout|screenSize|orientation"
            android:label="@string/app_name"
            android:theme="@android:style/Theme.Translucent.NoTitleBar" />
        <activity
            android:name=".ui.SplashActivity"
            android:configChanges="keyboardHidden|screenSize"
            android:screenOrientation="portrait"
            android:label="@string/title_activity_splash"
            android:theme="@style/FullscreenTheme">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name=".ui.MainActivity"
            android:label="@string/title_activity_main"
            android:theme="@style/AppTheme.NoActionBar"
            android:configChanges="orientation|screenSize"/>

        <meta-data
            android:name="com.google.android.geo.API_KEY"
            android:value="xxxxxxxxxxxx_xxxxxxxxxx-xxxxxxxxxxx"/>
    </application>

</manifest>

我做错了什么?

更新

对于那些说我不能成为我自己的应用程序的 Beta 测试员的人:

这是错误信息:

您希望能够在开发者帐户中使用该应用程序意味着您将无法使用同一帐户在该设备上安装测试版应用程序。

开发者帐户不能与设备中安装测试版应用程序的帐户相同。

尝试使用不同的帐户。

检查setup Alpha/Beta test

您不能使用与开发者帐户相同的帐户进行 Beta 测试。 Alpha 测试允许使用相同的帐户,但使用相同的开发人员帐户进行 Beta 测试本身就违反了 Beta 测试的定义,因此,您不得使用与开发人员相同的帐户对您的应用进行 Beta 测试。

我在这里找到了答案: Android app is supported by 0 devices

Sometimes the reason for this is a third party library that you have referenced. If you can find which one is it and if you can remove it you can solve the problem.

In may case I had to remove:

org.apache.commons.io:2.4

伊沃·斯托亚诺夫