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

时间:2019-02-11 12:12:02

标签: google-play-console

自从2019年1月15日更新我的Android Studio之后,Google Play控制台不再在除P8 Lite Huawei之外的任何设备上测试我的应用程序。其他所有设备均注明“此设备目前无法测试,请上传新的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
}

抱歉,我现在也加入了我的清单:

<?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 个答案:

答案 0 :(得分:0)

您可以使用Play控制台(help docs)查看与您的应用兼容的设备

  
      
  • 登录到您的Play控制台。
  •   
  • 选择一个应用。
  •   
  • 在左侧菜单上,单击发布管理>设备目录。
  •   
  • 如果还没有,请查看并接受服务条款。
  •   
  • 选择“所有”,“受支持”或“排除”标签。
  •   
  • 如果要以CSV文件的形式下载设备列表,请在页面右侧附近,单击“下载设备列表”。
  •   

其他设备通常不会被Google停止。如果您需要来自stackoverflow用户的更多帮助,则该问题通常是由应用清单引起的。您可能需要将AndroidManifest.xml添加到您的问题中。