简体   繁体   English

无法下载在Google Play上发布的测试版APK

[英]Unable to download a beta APK published on Google Play

I've uploaded the first APK of my game on the Google Play Developer Console for beta testing. 我已经在Google Play开发者控制台上上传了我游戏的第一张APK以进行Beta版测试。 The publication went well, and the application is now available for my beta testers. 该出版物进展顺利,该应用程序现在可供我的beta测试人员使用。

However, nobody is able to download the APK on his phone nor tablet. 但是,没有人能够在手机或平板电脑上下载APK。 When clicking on the download link provided by the Google Play Developer Console, testers get the following errors: 单击Google Play开发者控制台提供的下载链接时,测试人员会收到以下错误:

  • using Play Store: Authentication is required. 使用Play商店:需要验证。 You need to sign into your Google Account 您需要登录自己的Google帐户
  • using Google Chrome: This app is incompatible with all of your devices 使用谷歌浏览器:此应用与您的所有设备不兼容

I don't understand this error, as phones and tablets we're using appear in the compatible devices list given by the Google Play Developer Console for the APK file. 我不明白这个错误,因为我们正在使用的手机和平板电脑出现在Google Play开发者控制台为APK文件提供的兼容设备列表中。

Please note that we are able to manually upload the same APK on phones and tablets; 请注意,我们可以在手机和平​​板电脑上手动上传相同的APK; this works well. 这很好用。

Other precisions: 其他精度:

  • The game is based on LibGDX 该游戏基于LibGDX
  • I built the release APK with Eclipse (Android Tools > Export Signed Application Package...) 我用Eclipse构建了发布APK(Android工具>导出签名应用程序包...)
  • Testers belong to a Google Group that has been configured for my application beta testing 测试人员属于已为我的应用程序beta测试配置的Google Group

Here is my AndroidManifest.xml file: 这是我的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>

I also had a look to Android <uses-features> documentation , and it seems that permissions I use don't imply any feature that could make devices incompatible. 我还看了一下Android <uses-features>文档 ,看来我使用的权限并不意味着任何可能使设备不兼容的功能。

Does anyone have an idea of what I am doing wrong? 有没有人知道我做错了什么? Thanks for your help. 谢谢你的帮助。

Well You havn't mentioned anything about who is able to test. 那么你没有提到任何关于谁能够测试的东西。 You might need to create a google group and add all your friends 您可能需要创建一个Google论坛并添加所有朋友

This might help you a lot 可能对你有很大的帮助

I don't see anything wrong with your Android Manifest 我发现您的Android Manifest没有任何问题

If you encounter further problems, Check your code again 如果您遇到其他问题,请再次检查您的代码

If you find no errors in your code, then there is a "Contact Us" button on the google support page that may be able to help you (It helped me) 如果您的代码中未发现任何错误,那么Google支持页面上的“与我们联系”按钮可能会对您有所帮助(它帮助了我)

Hope this helps 希望这可以帮助

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 Google Map或登录名在已签名的APK中工作正常,但在Google Play上发布了相同的APK,然后Map或登录名不起作用 - Google Map or login working fine in signed apk but same apk published on google play then map or login not working 找出apk是发布为beta还是运行时稳定 - Find out if apk is published as beta or as stable at runtime 是否有可能以编程方式将谷歌从谷歌下载到PC? - Is it possible to download apk from google play programmatically to PC? Google Play 控制台:停用 alpha 或 beta 轨道中的生产代码版本是否也会停用生产 apk? - Google Play console: does deactivation of production code version in alpha or beta tracks also deactivate the production apk? 无法以编程方式下载.apk文件 - Unable to download .apk file programmatically 调试 apk 大小是否大于 google play store 中的相同 apk - Is debug apk size is greater than same apk in google play store 如何将在 google play console 上发布的 java 应用程序更新为 flutter 应用程序 - How to Update a java application published on google play console to flutter app 无法连接到 Google Play 结算 - Unable to connect to Google Play billing 无法从Android中的远程服务器下载.apk文件 - Unable to download .apk file from remote server in Android 如何下载旧的谷歌播放服务? - How to download older google play services?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM