google-play-console - Google Play 控制台不再在大多数设备上测试应用

标签 google-play-console

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

我无法在任何地方找到任何关于为什么会发生这种情况的信息。是不是因为 Google 不再支持在这些设备上进行测试?还是更新后对我的代码进行了更改?

我已经包含了我的 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
}

抱歉,我现在也包含了我的 list :
<?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>

最佳答案

您可以使用 Play 管理中心 (help docs) 查看您的应用与哪些设备兼容

  • Sign in to your Play Console.
  • Select an app.
  • On the left menu, click Release management > Device catalogue.
  • If you haven't already, review and accept the Terms of Service.
  • Select the All, Supported or Excluded tabs.
  • If you want to download a list of devices as a CSV file, near the right side of the page, click Download device list.


其他设备一般不会被 Google 阻止。如果您需要 stackoverflow 用户的更多帮助,那么问题通常是由应用 list 引起的。您可能需要添加您的 AndroidManifest.xml你的问题。

关于google-play-console - Google Play 控制台不再在大多数设备上测试应用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54630372/

相关文章:

android - 从 Google Play 中删除过时的测试版

android - 与我的应用无关的 Google Play 控制台崩溃报告

android - 新的 Google Play 控制台 - 首次应用发布问题的托管发布,一次发布多个版本

google-play-console - 创建产品发布后在 Play 商店中找不到应用程序

android - Google Play 控制台 - 如何删除已发布应用程序的更新

azure-devops - 从哪里获取 Azure Pipeline AppCenterDistribute@3 Task destinationStoreId?

download - Google Play 商店中的下载次数是如何计算的?

android - 即使在删除权限后也需要更新位置权限声明 - 应用内容 - 拒绝 Google Play 控制台

android - Google Play 控制台说内部测试可用,但不是

android - “开始推广到生产”按钮已禁用