Android પરફોર્મન્સ optimize કરવા માટે UI thread responsive રાખવો, કાર્યક્ષમ memory ઉપયોગ (leaks ટાળવા), smooth rendering, કાર્યક્ષમ lists, અને bottlenecks શોધવા માટે profiling જરૂરી છે. પરફોર્મન્સ સીધો user experience પર અસર કરે છે અને Android ઉપકરણોની વૈવિધ્યময় શ્રેણી પર મહત્વપૂર્ણ છે.
UI (main) thread responsive રાખો
✓ NEVER block the main thread → do network/DB/heavy work OFF it (coroutines + Dispatchers.IO)
→ blocking causes jank or ANR ("App Not Responding") — a top issue
✓ Keep work in onCreate / onBind / on the main thread minimal and fast
