Android యాప్ను విడుదల చేయడానికి విడుదల సంస్కరణ నిర్మించడం, దానిపై సంతకం చేయడం (అవసరం) మరియు Google Playకు (లేదా ఇతర స్టోర్లకు) ప్రచురించడం కూడా సంస్కరణ, పరీక్ష ట్రాక్లు మరియు సాగుతున్న నవీకరణల కోసం అవసరం. ప్రక్రియను అర్థం చేసుకోవడం యాప్లను విడుదల చేయడానికి ముఖ్యమైనది.
విడుదల సంస్కరణ నిర్మించడం
→ Build a RELEASE variant (optimized, minified/shrunk via R8/ProGuard) — not debug
→ Produce an APP BUNDLE (.aab) — the preferred format for Google Play (Play generates
optimized APKs per device); or an APK
యాప్ సంతకం (అవసరం)
ALL Android apps must be SIGNED with a certificate to be installed/updated:
→ sign with a KEYSTORE (a signing key you must keep SAFE — losing it means you can't
update the app with the same identity!)
→ PLAY APP SIGNING → Google manages your signing key (recommended; you upload with an
upload key, Google signs) — protects against key loss
→ The signature proves the app's authorship and that updates come from the same developer.
