Play商店的Android兼容性问题

时间:2015-09-27 16:22:20

标签: android google-play version

我已在google play上传了我的应用,并发现在

  

其他信息

显示

部分
  

需要Android 4.0.3 - 4.4

而不是4.0.3及以上

我的build.gradle是

apply plugin: 'com.android.application'

android {
    compileSdkVersion 22
    buildToolsVersion "22.0.1"

    defaultConfig {
        applicationId "com.dexterous.genero15"
        minSdkVersion 15
        targetSdkVersion 22
        versionCode 3
        versionName "1.1.1"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:22.2.1'
    compile 'com.github.flavienlaurent.discrollview:library:0.0.2@aar'
}

这个问题确实发生在我的其他应用程序中 我该如何解决这个问题。

1 个答案:

答案 0 :(得分:1)

问题是由discrollview库引起的。如您所见[{3}},图书馆的AndroidManifest.xml指定了maxSdkVersion

<manifest
    package="com.flavienlaurent.discrollview.lib"
    xmlns:android="http://schemas.android.com/apk/res/android">

    <uses-sdk
        android:maxSdkVersion="19"
        android:minSdkVersion="14"/>

</manifest>

已经有一个旨在解决问题的拉取请求: here