Android বিশাল পরিসরের ডিভাইস এবং OS সংস্করণে চলে ("বিভাজন"), তাই অ্যাপগুলিকে সংস্করণ সামঞ্জস্য পরিচালনা করতে হবে — পুরানো সংস্করণগুলিকে সমর্থন করার সময় নতুন বৈশিষ্ট্যগুলি নিরাপদে ব্যবহার করা। SDK স্তর, সামঞ্জস্য লাইব্রেরি এবং স্বচ্ছ অবনতি বোঝা গুরুত্বপূর্ণ।
SDK স্তর: 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).
