Play 商店不支持开发中的 XCover 3 手机

Posted

技术标签:

【中文标题】Play 商店不支持开发中的 XCover 3 手机【英文标题】:The developing XCover 3 phone is unsupported in Play Store 【发布时间】:2018-02-05 21:55:56 【问题描述】:

我知道有类似的问题,但没有一个对我有帮助。 手机是三星 Galaxy XCover 3

我在 Xcover 4 上开发了该应用程序。我将它上传到 Play 商店,它说它不支持 XCover 3。 (Play 商店支持 XCover 4。)

之后,我尝试从 android Studio 的 XCover 3 上启动该应用程序,并且成功了。但 Play 商店表示不支持。

google play 开发者控制台设备目录 中,XCover 3 受支持。

我的 APK 是 48MB。 (This is it.)

我将 Manifest 文件和 Android Studio 中的 build.gradle 文件粘贴到这里:

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

<uses-feature android:glEsVersion="0x00030000" />

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.INTERNET" />

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
    <activity android:name="com.feverkill.gatsj.balanceblockbattle.MainActivity" android:screenOrientation="portrait">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

    <service
    android:name=".MyFirebaseMessagingService">
    <intent-filter>
        <action android:name="com.google.firebase.MESSAGING_EVENT"/>
    </intent-filter>
</service>
    <service
        android:name=".MyFirebaseInstanceIDService">
        <intent-filter>
            <action android:name="com.google.firebase.INSTANCE_ID_EVENT"/>
        </intent-filter>
    </service>

</application>

</manifest>

build.gradle:

apply plugin: 'com.android.application'

android 
    compileSdkVersion 26
    defaultConfig 
        applicationId "com.feverkill.gatsj.balanceblockbattle"
        minSdkVersion 19
        targetSdkVersion 26
        versionCode 13
        versionName "1.3"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    
    buildTypes 
        release 
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        
    


dependencies 
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:26.1.0'
    implementation 'com.android.support.constraint:constraint-layout:1.0.2'
    implementation 'com.google.firebase:firebase-core:11.8.0'
    implementation 'com.google.firebase:firebase-messaging:11.8.0'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.1'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'

apply plugin: 'com.google.gms.google-services'

什么会导致这个问题?

(是的,我联系了开发人员支持,但他们无能为力。他们说:“我们没有接受过应用程序开发问题的技术培训,我无法确认它不兼容的具体原因”。 )

【问题讨论】:

我投票决定将此问题作为题外话结束,因为we are not customer support for your favorite company。而是通过他们的网站直接向该公司提出支持问题。此网站的指南可在help center 中找到。 我认为这是应用程序构建中的参数问题。与客户服务无关。 【参考方案1】:

我的猜测要么是 Open GL 版本要求,要么是 minSdkVersion。 XCover3 上的哪个 android 版本无法安装?

Google Play 管理中心的开发人员支持非常好,可以帮助解决此类问题,并且他们提供大量关于您和您的应用的信息。我建议通过 Google Play 控制台中的帮助链接与他们联系。

【讨论】:

XC 3 运行 5.1.1,所以 API 级别 22。这高于指定的 19。GL 版本应该兼容。手机支持 GL ES 3.0。 (我联系了他们,但他们无能为力。他们说:“我们没有接受过应用程序开发问题的技术培训,我无法确认它不兼容的具体原因”) 这是一个 Open GL 问题。我刚刚检查了手机,它正在报告 Open GL2(您可能可以将其视为 ro.opengles.version=131072。OpenGL ES 3.0 需要 ro.opengles.version=196608)

以上是关于Play 商店不支持开发中的 XCover 3 手机的主要内容,如果未能解决你的问题,请参考以下文章

使用最新的 Play 商店“不支持应用内结算版本 3”

Play 商店中的 API 支持

Android 应用程序与 Play 商店中的新设备不兼容

Android Studio 上对 Android TV 的 Play 商店支持

新的 Android 应用可以替换 Play 商店中的现有应用吗?

应用在 Play 商店上线时,有 0 台设备支持 Android 应用