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

问题描述 投票:3回答:1

自从2019年1月15日更新我的Android工作室以来,谷歌播放控制台不再在除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
}

道歉,我现在也包含了我的清单:

<?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>

google-play-console
1个回答
0
投票

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

  • 登录您的Play控制台。
  • 选择一个应用程序
  • 在左侧菜单中,单击版本管理>设备目录。
  • 如果您还没有,请查看并接受服务条款。
  • 选择“全部”,“支持”或“排除”选项卡。
  • 如果要将设备列表下载为CSV文件,请在页面右侧附近单击“下载设备列表”。

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

© www.soinside.com 2019 - 2024. All rights reserved.