当前位置: 首页 > 知识库问答 >
问题:

Google play console不再在大多数设备上测试应用程序

殳飞扬
2023-03-14

自2019年1月15日更新我的android studio以来,google play console不再在P8 Lite以外的任何设备上测试我的应用程序。所有其他设备状态为“此时无法测试此设备,请上载新的APK”。

我在任何地方都找不到关于为什么会发生这种情况的任何信息。是不是因为谷歌不再支持这些设备上的测试?或者这是对我的代码进行的更新?

我已经包括了我的gradle代码,以防它是由于SDK冲突或其他原因造成的,但坦率地说,我被难住了。

android {
compileSdkVersion 28
defaultConfig {
    applicationId "com.frozencodegame.evolution"
    minSdkVersion 21
    targetSdkVersion 28
    versionCode 27
    versionName "0.0027"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
aaptOptions {
    cruncherEnabled = false
}

抱歉,我现在也包括了我的清单:

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

<application
    android:allowBackup="true"
    android:fullBackupContent="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:screenOrientation="portrait"
    android:supportsRtl="true"
    android:theme="@style/AppTheme"
    tools:ignore="GoogleAppIndexingWarning">
    <activity
        android:name=".pages.pageSplice"
        android:theme="@style/AppTheme.transparentTheme"
        android:windowSoftInputMode="adjustNothing" />
    <activity
        android:name=".pages.pageBreed"
        android:theme="@style/AppTheme.transparentTheme"
        android:windowSoftInputMode="adjustNothing" />
    <activity
        android:name=".MainActivity"
        android:windowSoftInputMode="adjustNothing">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name=".pages.pageSettings"
        android:theme="@style/AppTheme.transparentTheme" />
    <activity
        android:name=".pages.pageCreature"
        android:theme="@style/AppTheme.transparentTheme"
        android:windowSoftInputMode="adjustNothing" />
</application>

共有1个答案

南门峰
2023-03-14

您可以使用Play Console(帮助文档)查看应用程序中与哪些设备兼容

  • 登录到您的游戏机

谷歌一般不会停止其他设备。如果你需要stackoverflow用户的更多帮助,那么问题通常是由应用清单引起的。你可能需要添加你的Androidanifest.xml到你的问题。

 类似资料:
  • 我遵循了谷歌关于应用内购买服务的实施说明。 我被提供了访问Google Play开发者控制台的邀请用户。我从它的私钥,并添加我的谷歌帐户到输入字段与测试帐户。之后,我craetad APK文件,并签署了它与有效的证书。然后将应用程序上传到Google Play,但没有发布。之后,我创建了需要的应用内购买并发布它们。然后在我的设备上安装了相同的签名apk文件。 我的问题是:如何测试从不同设备和帐户购

  • 问题内容: 我在Android Studio调试时遇到困难。尝试在调试模式下启动应用程序后,设备将显示警告,标题始终为“等待调试器”。我的清单文件中也有文件,并且好像设备已正确连接,因为我可以简单地运行我的应用程序而没有任何问题。我做错了什么? 问题答案: 删除,因为在运行/调试时,Android Studio中的应用程序已使用调试证书签名,因此该设置不是必需的。 然后从控制台检查设备是否正确连接

  • 我用RabbitMQ作为消息服务器编写了一个Spring-MVC-Hibernate应用程序 该应用程序现在托管在我本地系统中的单个tomcat服务器上。 我想在多个JVM节点环境中测试我的应用程序,即在多个tomcat服务器上运行的应用程序。 测试应用程序的最佳方法是什么。 我脑海中浮现的一些事情 A、 安装 B.将应用程序托管在像OpenShift、Cloud doundry这样的PAAS上,

  • 我想在开发过程中在真正的iPhone和Android手机上运行/测试(而不是自动测试)我的颤振应用程序。然而,Flutter文档似乎只记录了如何使用iOS模拟器或Android模拟器。 我认为这对于iOS / Android开发人员来说已经是一个明智的选择,但我都不是,Flutter是我第一次涉足移动开发。 有没有关于如何在真实设备上运行时开发的初学者指南的链接? 附加上下文 < li >我是一名

  • 我正在使用Windows8。我正在尝试在设备上运行应用程序。找不到我的设备,设备USB调试已启用。此外,我已经安装了相同的驱动程序使用管理我也安装了谷歌USB驱动程序包。但仍然找不到该设备。 拜托,有人能帮忙吗

  • 在我将android Studio更新到2.0后,我无法在我的设备(华硕Zenphone 2)上调试应用程序。在我单击Android Studio中的调试图标后,我一直在调试选项卡中看到以下消息。 Android Studio UI中调试选项卡中的消息 我一直看到标题为“等待调试器”的警告对话框和强制关闭按钮。 我搜索了该消息,但似乎只有两个来自谷歌的结果。 我重新启动了Android Studi