minSdk vs targetSdk vs compileSdk
Let's have a look at what minSdk, targetSdk and compileSdk really means in build.gradle script.
android {
compileSdk 32
defaultConfig {
/*...*/
minSdk 21
targetSdk 32
/*...*/
}
}
minSdk -...
vtsen.hashnode.dev4 min read