Android Play 商店的兼容性问题
Android compatibility issue on play store
我已经在 google play 上上传了我的应用程序,发现在
ADDITIONAL INFORMATION
显示的部分
Requires 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'
}
我的 ant other app on play 没有出现这个问题。
我该如何解决这个问题。
问题是由 discrollview
库引起的。如您所见,here 库的 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>
已经有一个旨在解决问题的拉取请求:
https://github.com/flavienlaurent/discrollview/pull/9
我已经在 google play 上上传了我的应用程序,发现在
ADDITIONAL INFORMATION
显示的部分
Requires 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'
}
我的 ant other app on play 没有出现这个问题。
我该如何解决这个问题。
问题是由 discrollview
库引起的。如您所见,here 库的 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>
已经有一个旨在解决问题的拉取请求: https://github.com/flavienlaurent/discrollview/pull/9