【问题标题】:Unable to download a beta APK published on Google Play无法下载在 Google Play 上发布的测试版 APK
【发布时间】:2015-06-02 09:45:04
【问题描述】:

我已将我的游戏的第一个 APK 上传到 Google Play 开发者控制台以进行 Beta 测试。发布进展顺利,该应用程序现在可供我的 beta 测试人员使用。

但是,没有人能够在他的手机或平板电脑上下载 APK。当点击 Google Play Developer Console 提供的下载链接时,测试人员会收到以下错误:

  • 使用 Play 商店:需要身份验证。您需要登录自己的 Google 帐户
  • 使用 Google Chrome:此应用与您的所有设备都不兼容

我不明白这个错误,因为我们使用的手机和平板电脑出现在 Google Play 开发者控制台为 APK 文件提供的兼容设备列表中。

请注意,我们可以在手机和平​​板电脑上手动上传相同的 APK;这很好用。

其他精度:

  • 游戏基于LibGDX
  • 我使用 Eclipse 构建了发布 APK(Android 工具 > 导出签名的应用程序包...)
  • 测试人员属于为我的应用程序 beta 测试配置的 Google 群组

这是我的 AndroidManifest.xml 文件:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.XXX.XXX"
    android:versionCode="1"
    android:versionName="1.0-beta01" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="21" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/GdxTheme" >
        <meta-data
            android:name="com.google.android.gms.version"
            android:value="@integer/google_play_services_version" />

        <activity
            android:name="com.axlsofts.tolum.android.AndroidLauncher"
            android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
            android:label="@string/app_name"
            android:screenOrientation="portrait" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.google.android.gms.ads.AdActivity"
            android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
            android:screenOrientation="portrait"
            android:theme="@android:style/Theme.Translucent" />
    </application>

    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.READ_PHONE_STATE" />

</manifest>

我还查看了Android <uses-features> documentation,似乎我使用的权限并不意味着任何可能使设备不兼容的功能。

有人知道我做错了什么吗?感谢您的帮助。

【问题讨论】:

    标签: java android eclipse libgdx


    【解决方案1】:

    嗯,你还没有提到谁能够测试。 您可能需要创建一个 google 群组并添加您的所有朋友

    This 可能对你有很大帮助

    我认为您的 Android 清单没有任何问题

    如果您遇到更多问题,请再次检查您的代码

    如果您在代码中没有发现错误,那么谷歌支持页面上有一个“联系我们”按钮可能会帮助您(它帮助了我)

    希望对你有帮助

    【讨论】:

    • 感谢您的回答。事实上,测试人员属于我在 Google Play 开发者控制台中配置的一个 Google 组,用于测试我的 beta APK。我会听从您的建议并向 Google 支持发送消息。再次感谢。
    猜你喜欢
    • 2020-12-04
    • 2016-10-19
    • 1970-01-01
    • 1970-01-01
    • 2012-06-22
    • 1970-01-01
    • 1970-01-01
    • 2016-08-29
    • 2016-05-19
    相关资源
    最近更新 更多