Play商店

时间:2018-02-05 21:55:56

标签: android android-studio google-play adb compatibility

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

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

之后我尝试在Android Studio上的 XCover 3 上启动应用程序并且它有效。但Play Store表示它没有得到支持。

设备目录 int 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'

什么可能导致这个问题?

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

1 个答案:

答案 0 :(得分:1)

我的猜测可能是Open GL版本要求,也可能是minSdkVersion。什么是XCover3上不安装的Android版本?

Google Play Console开发者支持非常好,可以帮助解决此类问题,并且他们有很多关于您和您的应用的信息。我建议您通过Google Play控制台中的帮助链接与他们联系。