【问题标题】:Having compatibility issues on Google Play with some devices在 Google Play 上与某些设备存在兼容性问题
【发布时间】:2019-01-19 11:33:41
【问题描述】:

我最近刚刚启动了我的应用程序,它运行得非常好!不过,我遇到了一些用户的问题。使用 Nexus 5X、华为 P10 Lite 和魅族 M2 Note 等旧设备的用户表示,他们无法在 Google Play 上下载该应用程序,因为它说它与他们的设备不兼容。我已经检查了开发者控制台,它说应用程序应该支持这些设备(除了魅族,那个甚至没有出现在目录中)。我也已经运行了模仿设备的模拟器,一切正常。它们都运行 Android 8.0,我确信我的应用程序支持它。

我一直在谷歌上寻找解决这个问题的方法,但老实说,我不知道该怎么办了。这是我的第一个真正的应用程序,我不禁感到我错过了广泛发布的关键步骤。


这是我的清单:

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

    <uses-permission android:name="android.permission.VIBRATE" />
    <uses-feature android:name="android.hardware.vibrate" android:required="false"></uses-feature> 


    <application
        android:name=".BaseApp"
        android:allowBackup="true"
        android:icon="@mipmap/ic_work_icon_small"
        android:label="Robota"
        android:roundIcon="@mipmap/ic_work_icon_small_round"
        android:supportsRtl="true"
        android:theme="@style/WorkoutTimerLight">
        <activity
            android:name=".MainActivity"
            android:screenOrientation="portrait"
            android:theme="@style/WorkoutTimerLight"
            android:windowSoftInputMode="adjustPan">

        </activity>

        <meta-data
            android:name="preloaded_fonts"
            android:resource="@array/preloaded_fonts" />

        <activity android:name=".SplashScreen"
            android:screenOrientation="portrait"
            android:theme="@style/WorkoutTimerLight"
            android:windowSoftInputMode="adjustPan">

            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER"></category>
            </intent-filter>

        </activity>
    </application>

</manifest>

这是我的毕业论文:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.balanstudios.einar.workouttimer"
        minSdkVersion 23
        targetSdkVersion 28
        versionCode 7
        versionName "1.0.2"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    productFlavors {
    }
    sourceSets { main { assets.srcDirs = ['src/main/assets', 'src/main/assets/'] } }
    lintOptions {
        abortOnError false
    }
}

dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    implementation 'com.android.support:appcompat-v7:28.0.0-alpha3'
    implementation 'com.android.support:support-media-compat:28.0.0-alpha3'
    implementation 'com.android.support:design:28.0.0-alpha3'
    implementation 'com.android.support.constraint:constraint-layout:1.1.2'
    implementation 'com.android.support:support-v4:28.0.0-alpha3'
    implementation 'com.google.code.gson:gson:2.8.2'
    implementation 'com.anjlab.android.iab.v3:library:1.0.44'

    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}

有人有什么想法吗?非常感谢任何帮助!

Play Store Link

【问题讨论】:

    标签: android google-play device compatibility


    【解决方案1】:

    您的应用有 min Sdk = 23(这个 gradle 行)

     minSdkVersion 23
    

    这些投诉可能来自使用旧版 Android 的用户。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2020-08-09
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多