My Android APP has a minimum SDK 16. Recently, I want to update the Admob library to the latest version, it requires minimum SDK 19. If I publish the APP bundles with minSdk 19 to Google Play, it will replace the APP bundles with minSdk 16 completely. Then all users under API level 19 will upgrade to a very early version, which causes a lot of crashes. Several years ago, we could publish multiple APKs, and target different API levels by version code. How can I do the same thing with APP bundles?
defaultConfig {
minSdkVersion 16
}
dependencies {
implementation 'com.google.android.gms:play-services-ads:20.6.0'
}