我错误地使用SDK版本22+制作了一个应用 而且我已经将该应用发布到了Play商店,
那么,如果我将gradle文件中的minSDKVersion从22更改为17,会发生什么?我也想支持使用这些android版本的人。一个大错误。我该怎么办?
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.femindharamshi.spa"
minSdkVersion 22
targetSdkVersion 28
versionCode 4
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'])
//noinspection GradleCompatible
implementation 'com.android.support:appcompat-v7:28.0.0-beta01'
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
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'
implementation 'com.android.support:cardview-v7:28.0.0-beta01'
implementation 'com.loopj.android:android-async-http:1.4.9'
implementation 'com.github.kbiakov:CodeView-android:1.3.1'
implementation 'com.android.support:design:28.0.0-beta01'
implementation 'com.google.android.gms:play-services-ads:15.0.1'
implementation 'uk.co.chrisjenx:calligraphy:2.3.0'
}
答案 0 :(得分:2)
新版本将支持较低版本。只要您保持更改,就可以了。尽管给出了https://developer.android.com/about/dashboards/的使用情况统计信息,但我不会花很多时间来支持它们,尤其是如果您有西方观众(偏向更高)