Android વિશાળ શ્રેણીના ઉપકરણો અને OS સંસ્કરણો પર ચાલે છે ("વિભાજન"), તેથી applications સંસ્કરણ સુસંગતતા સંભાળવી આવશ્યક છે — જૂના સંસ્કરણોને સમર્થન આપતા હોય તેમ નવી features સુરક્ષિત રીતે વાપરવી. SDK levels, compatibility libraries, અને graceful degradation સમજવું મહત્વપૂર્ણ છે.
SDK levels: min, target, compile
minSdk → the OLDEST Android version the app supports (older devices can't install it)
→ lower minSdk = more devices reached, but more compatibility work
targetSdk → the version the app is TESTED/optimized against (and opts into its behaviors)
→ should be kept current (Play requires a recent targetSdk)
compileSdk → the SDK version used to COMPILE (access to newer APIs)
→ Balance: support enough old devices (minSdk) while targeting current behavior (targetSdk).
