无法在用于开发的同一设备上安装Play Store的测试版应用。

问题描述 投票:-1回答:3

我已经将我的应用程序上传到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>

我做错了什么?

更新

对于那些说我不能做自己应用的测试人员。Tester

这是错误信息 And here is the error message:ErrorMessage

android google-play android-manifest
3个回答
-1
投票

你不能使用相同的账号进行Beta版测试和开发者账号。同样的帐户使用是允许的Alpha测试,但使用相同的开发者帐户的Beta测试本身违反了Beta测试的定义,所以,你不允许Beta测试你的应用程序使用相同的帐户,因为它的开发者。


-1
投票

我在这里找到了答案。安卓应用被0个设备支持

有时候,造成这种情况的原因是你引用的第三方库。如果你能找到是哪一个,如果你能删除它,你就能解决这个问题。

在这种情况下,我不得不删除。

org.apache.commons.io:2.4。

作者:Ivo Stoyanov


-1
投票

你想在开发者账户中使用该应用程序,意味着你将无法在该设备上用同一账户安装测试版应用程序。

开发者账户不应该与安装测试版应用的设备账户相同。

请尝试使用不同的帐户。

检查 设置AlphaBeta测试

© www.soinside.com 2019 - 2024. All rights reserved.